main.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>新疆阿勒泰科技服务平台</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <!-- Font Awesome -->
  10. <link rel="stylesheet" href="${contextPath}/dist/js/layui/css/layui.css">
  11. <link rel="stylesheet" href="${contextPath}/dist/css/admin.css" media="all">
  12. </head>
  13. <body class="layui-layout-body">
  14. <div class="layui-layout layui-layout-admin">
  15. <!-- Navbar -->
  16. <#include "body/top.html">
  17. <!-- /.navbar -->
  18. <!-- Main Sidebar Container -->
  19. <#include "body/left.html">
  20. <!-- Content Wrapper. Contains page content -->
  21. <div class="layui-body">
  22. <!-- 内容主体区域 -->
  23. <h3 style="overflow:hidden; border:0px solid #CCC; padding:3px; margin:10px;">欢迎使用</h3>
  24. <div style="padding:10px; overflow:hidden;height:350px;width:900px;" id="main"></div>
  25. </div>
  26. <!-- /.content-wrapper -->
  27. <#include "body/footer.html">
  28. </div>
  29. <!-- ./wrapper -->
  30. <script src="${contextPath}/dist/js/layui/layui.js"></script>
  31. <script type="text/javascript" src="${contextPath}/dist/js/jquery-1.11.1.min.js"></script>
  32. <script>
  33. //JavaScript代码区域
  34. layui.use('element', function(){
  35. var element = layui.element;
  36. });
  37. </script>
  38. </body>
  39. </html>