index.tpl 932 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>{{$title}}</title>
  7. <style>
  8. body { font-family: 'Microsoft YaHei', sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; }
  9. h1 { color: #1890ff; border-bottom: 1px solid #eee; padding-bottom: 10px; }
  10. ul { list-style: none; padding: 0; }
  11. li { padding: 8px 15px; margin: 5px 0; background: #f7f7f7; border-radius: 4px; }
  12. footer { margin-top: 30px; color: #888; font-size: 0.9em; }
  13. </style>
  14. </head>
  15. <body>
  16. <h1>{{$title}}</h1>
  17. <h2>主要特性:</h2>
  18. <ul>
  19. {{foreach $features as $feature}
  20. <li>{{$feature}}</li>
  21. {{/foreach}}
  22. </ul>
  23. <footer>
  24. &copy; {{$current_year}} Hyperf 项目 - 使用Smarty模板引擎渲染
  25. </footer>
  26. </body>
  27. </html>