<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<th:block th:fragment="common_header">
<!-- Common styles -->
<meta charset="UTF-8">
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link rel="shortcut icon" th:href="@{/favicon.ico}" type="image/x-icon" />
<link rel="stylesheet" th:href="@{/resource/plugin/weAdmin/static/css/font.css}">
<link rel="stylesheet" th:href="@{/resource/plugin/weAdmin/static/css/weadmin.css}">
</th:block>
代码引公共js
<th:block th:fragment="common_js">
<!-- Common scripts -->
<script type="text/javascript" th:src="@{/resource/plugin/weAdmin/lib/layui/layui.js}" charset="utf-8"></script>
</th:block>
代码引用公共head
<head>
<title>haha</title>
<th:block th:replace="common::common_header" />
<link rel="stylesheet" th:href="@{/demo.css}" type="text/css" />
</head>
<th:block th:replace="common::common_js" />