Skip to content

Commit 6b681dd

Browse files
ultraqsnicoll
authored andcommitted
Upgrade Thymeleaf 3 layout dialect in doc
Closes gh-7370
1 parent a1dda12 commit 6b681dd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ By default, `spring-boot-starter-thymeleaf` uses Thymeleaf 2.1. If you are using
14651465
----
14661466
<properties>
14671467
<thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
1468-
<thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>
1468+
<thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
14691469
</properties>
14701470
----
14711471

spring-boot-samples/spring-boot-sample-web-thymeleaf3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<properties>
1919
<main.basedir>${basedir}/../..</main.basedir>
2020
<thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
21-
<thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>
21+
<thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
2222
</properties>
2323
<dependencies>
2424
<dependency>

spring-boot-samples/spring-boot-sample-web-thymeleaf3/src/main/resources/templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="http://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout">
3+
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
44
<head>
55
<title>Layout</title>
66
<link rel="stylesheet" th:href="@{/css/bootstrap.min.css}"

spring-boot-samples/spring-boot-sample-web-thymeleaf3/src/main/resources/templates/messages/form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="http://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
3+
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
44
layout:decorate="layout">
55
<head>
66
<title>Messages : Create</title>

spring-boot-samples/spring-boot-sample-web-thymeleaf3/src/main/resources/templates/messages/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html xmlns:th="http://www.thymeleaf.org"
3-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
3+
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
44
layout:decorate="layout">
55
<head>
66
<title>Messages : View all</title>

spring-boot-samples/spring-boot-sample-web-thymeleaf3/src/main/resources/templates/messages/view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<html xmlns:th="http://www.thymeleaf.org"
2-
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
2+
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
33
layout:decorate="layout">
44
<head>
55
<title>Messages : View</title>

0 commit comments

Comments
 (0)