base.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="renderer" content="webkit"/>
  6. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  8. {block name="meta"}
  9. <link rel="mobile-prefetch" href=""/>
  10. {/block}
  11. {block name="title"}
  12. <title>{:get_system_config('web','admin_title')}</title>
  13. {/block}
  14. {block name="keywords"}
  15. <meta name="keywords" content="{:get_system_config('web','keywords')}"/>
  16. <meta name="description" content="{:get_system_config('web','desc')}"/>
  17. {/block}
  18. {block name="css"}
  19. <link rel="stylesheet" href="{__CSS__}/common.css?v={:get_system_config('web','version')}" media="all">
  20. {/block}
  21. {block name="style"}{/block}
  22. {block name="js"}
  23. <script src="https://cdn.staticfile.org/jquery/3.5.1/jquery.min.js"></script>
  24. <script defer src="{__JS__}/layer/layer.js"></script>
  25. {/block}
  26. </head>
  27. <body class="main-body">
  28. <!-- 主体 -->
  29. {block name="body"}{/block}
  30. <!-- /主体 -->
  31. <!-- 底部 -->
  32. {block name="footer"}
  33. {include file="common/footer" /}
  34. {/block}
  35. <!-- /底部 -->
  36. <!-- 脚本 -->
  37. {block name="script"}{/block}
  38. <!-- /脚本 -->
  39. <!-- 统计代码 -->
  40. {block name="code"}{/block}
  41. <!-- /统计代码 -->
  42. </body>
  43. </html>