123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <html lang="en" xmlns:th="http://www.thymeleaf.org">
- <head th:fragment="head_Normal(titles,links,styles)" >
- <meta charset="utf-8">
-
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="">
- <meta name="author" content="">
- <!-- Le styles -->
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/style.css}">
- <!-- Ladda for Bootstrap 3按钮加载进度插件 -->
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/loader-style.css}">
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/bootstrap.css}">
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/js/progress-bar/number-pb.css}">
- <!-- bootstrap-时间样式 -->
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/js/bootstrap/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css}">
- <!--颜色控件样式 -->
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/js/colorPicker/bootstrap-colorpicker.css}">
-
- <!-- 文件上传css-->
- <link th:href="@{/static/admin/assets/js/dropZone/downloads/css/dropzone.css}" rel="stylesheet"/>
-
- <!-- checkbox css-->
- <link th:href="@{/static/admin/assets/css/Checkboxes/awesome-bootstrap-checkbox.css}" rel="stylesheet"/>
- <!-- 切换按钮css -->
- <link th:href="@{/static/admin/assets/js/switch/bootstrap-switch.css}" rel="stylesheet">
- <!-- 富文本css -->
- <link th:href="@{/static/admin/assets/js/textEditor/editor.css}" rel="stylesheet">
- <link th:href="@{/static/admin/assets/js/textEditor/src/bootstrap-wysihtml5.css}" rel="stylesheet">
-
- <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- <!-- Fav and touch icons -->
- <link rel="shortcut icon" th:href="@{/static/admin/images/favicon.ico}">
- <link rel="icon" th:href="@{/static/admin/images/favicon.ico}" type="image/x-icon">
- <th:block th:replace="${titles}" />
- <!-- 替换新的links-->
- <th:block th:replace="${links}" />
- <!-- 替换新的${styles}-->
- <th:block th:replace="${styles}" />
- </head>
- <head th:fragment="Head_Premiss(titles,links,styles)" >
- <meta charset="utf-8">
-
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="">
- <meta name="author" content="">
- <!-- Le styles -->
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/style.css}">
- <!-- Ladda for Bootstrap 3按钮加载进度插件 -->
-
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/loader-style.css}">
- <link rel="stylesheet" type="text/css" th:href="@{/static/admin/assets/css/bootstrap.css}">
- <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- <!-- Fav and touch icons -->
- <link rel="shortcut icon" th:href="@{/static/admin/images/favicon.ico}">
- <link rel="icon" th:href="@{/static/admin/images/favicon.ico}" type="image/x-icon">
- <th:block th:replace="${titles}" />
- <!-- 替换新的links-->
- <th:block th:replace="${links}" />
- <!-- 替换新的${styles}-->
- <th:block th:replace="${styles}" />
- </head>
|