head.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  2. <head th:fragment="head_Normal(titles,links,styles)" >
  3. <meta charset="utf-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <meta name="description" content="">
  6. <meta name="author" content="">
  7. <!-- Le styles -->
  8. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/style.css}">
  9. <!-- Ladda for Bootstrap 3按钮加载进度插件 -->
  10. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/loader-style.css}">
  11. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/bootstrap.css}">
  12. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/js/progress-bar/number-pb.css}">
  13. <!-- bootstrap-时间样式 -->
  14. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/js/bootstrap/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css}">
  15. <!--颜色控件样式 -->
  16. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/js/colorPicker/bootstrap-colorpicker.css}">
  17. <!-- 文件上传css-->
  18. <link th:href="@{/static/admin/assets/js/dropZone/downloads/css/dropzone.css}" rel="stylesheet"/>
  19. <!-- checkbox css-->
  20. <link th:href="@{/static/admin/assets/css/Checkboxes/awesome-bootstrap-checkbox.css}" rel="stylesheet"/>
  21. <!-- 切换按钮css -->
  22. <link th:href="@{/static/admin/assets/js/switch/bootstrap-switch.css}" rel="stylesheet">
  23. <!-- 富文本css -->
  24. <link th:href="@{/static/admin/assets/js/textEditor/editor.css}" rel="stylesheet">
  25. <link th:href="@{/static/admin/assets/js/textEditor/src/bootstrap-wysihtml5.css}" rel="stylesheet">
  26. <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
  27. <!--[if lt IE 9]>
  28. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  29. <![endif]-->
  30. <!-- Fav and touch icons -->
  31. <link rel="shortcut icon" th:href="@{/static/admin/images/favicon.ico}">
  32. <link rel="icon" th:href="@{/static/admin/images/favicon.ico}" type="image/x-icon">
  33. <th:block th:replace="${titles}" />
  34. <!-- 替换新的links-->
  35. <th:block th:replace="${links}" />
  36. <!-- 替换新的${styles}-->
  37. <th:block th:replace="${styles}" />
  38. </head>
  39. <head th:fragment="Head_Premiss(titles,links,styles)" >
  40. <meta charset="utf-8">
  41. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  42. <meta name="description" content="">
  43. <meta name="author" content="">
  44. <!-- Le styles -->
  45. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/style.css}">
  46. <!-- Ladda for Bootstrap 3按钮加载进度插件 -->
  47. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/loader-style.css}">
  48. <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/bootstrap.css}">
  49. <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
  50. <!--[if lt IE 9]>
  51. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  52. <![endif]-->
  53. <!-- Fav and touch icons -->
  54. <link rel="shortcut icon" th:href="@{/static/admin/images/favicon.ico}">
  55. <link rel="icon" th:href="@{/static/admin/images/favicon.ico}" type="image/x-icon">
  56. <th:block th:replace="${titles}" />
  57. <!-- 替换新的links-->
  58. <th:block th:replace="${links}" />
  59. <!-- 替换新的${styles}-->
  60. <th:block th:replace="${styles}" />
  61. </head>