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