index.tpl 395 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{$page_title}} - {{$app_name}}</title>
  5. </head>
  6. <body>
  7. <h1>欢迎, {{$user.name}}</h1>
  8. <div class="info">
  9. <p>当前年份: {{$current_year}}</p>
  10. <p>版本号: {{$version}}</p>
  11. <p>请求处理时间: {{$request_time|number_format:4}}秒</p>
  12. <p>客户端IP: {{$request->getAttribute('client_ip')}}</p>
  13. </div>
  14. </body>
  15. </html>