## 通用模板
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
</head>
<body class="layui-layout-body">
<!-- 页面内容 -->
<script th:replace="/common/template :: script"></script>
</body>
</html>
```
在模板页面中直接引用该模型,参数如下:
* ~{::title} \<title>标签变量——自定义页面标题
* ~{::link} \<link>标签变量——自定义link引用
* ~{::style} \<style>标签变量——自定义页面样式