sso

layout_base.html 574B

1234567891011121314151617181920
  1. <!-- 用于列表页 -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="renderer" content="webkit">
  7. <meta content="width=device-width, initial-scale=1" name="viewport" />
  8. <title>{{.pageTitle}}</title>
  9. <!-- Tell the browser to be responsive to screen width -->
  10. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  11. {{template "layout/globalcss.html"}}
  12. {{.headcssjs}}
  13. </head>
  14. <body>
  15. {{.LayoutContent}}
  16. {{template "layout/globaljs.html"}}
  17. {{.footerjs}}
  18. </body>
  19. </html>