多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 通用模板 ```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>标签变量——自定义页面样式