Merge pull request #9561 from eddumelendez:gh-8137

* pr/9561:
  Improve sample to use fragment expression by thymeleaf 3
This commit is contained in:
Stephane Nicoll
2017-06-22 09:51:40 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:replace="fragments :: head(title='Messages : Create')">
<head th:replace="fragments :: head(title=~{::title/text()})">
<title>Messages : Create</title>
</head>
<body>

View File

@@ -1,6 +1,6 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:replace="fragments :: head(title='Messages : View all')">
<head th:replace="fragments :: head(title=~{::title/text()})">
<title>Messages : View all</title>
</head>
<body>

View File

@@ -1,6 +1,6 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:replace="fragments :: head(title='Messages : View')">
<head th:replace="fragments :: head(title=~{::title/text()})">
<title>Messages : View</title>
</head>
<body>