项目作者: Math-Pi

项目描述 :
SpringBoot-Thymeleaf的布局框架: thymeleaf-layout-dialect
高级语言: HTML
项目地址: git://github.com/Math-Pi/springboot-thymeleaf-layout.git
创建时间: 2020-10-03T13:24:46Z
项目社区:https://github.com/Math-Pi/springboot-thymeleaf-layout

开源协议:

下载


SpringBoot-Thymeleaf-layout

1.pom.xml引入依赖

  1. <dependency>
  2. <groupId>nz.net.ultraq.thymeleaf</groupId>
  3. <artifactId>thymeleaf-layout-dialect</artifactId>
  4. <version>2.0.2</version>
  5. </dependency>12345

2.创建模板页面(layout.html)

使用layout:fragment=”“表示

  1. <div th:replace="layout/header :: header"></div>
  2. <div th:replace="layout/left :: left"></div>
  3. <div layout:fragment="content" > content</div>
  4. <div th:replace="layout/footer :: footer"></div>

3.使用该模板

使用layout:decorator=”“指定要使用的模版

  1. <html xmlns:th="http://www.thymeleaf.org"
  2. xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
  3. layout:decorate="layout">

在内容部分,同样使用layout:fragment=”“来指定要将片段输出在模版的位置

  1. <div layout:fragment="content" >
  2. <h2>模板内容</h2>
  3. </div>
  • 使用这种方式,可以直接继承模版的js以及css样式