## 通用模板
```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>標簽變量——自定義頁面樣式