Improve sample to use fragment expression by thymeleaf 3

Avoid repeated title text making use of capabilities in thymeleaf 3.

Closes gh-9561
This commit is contained in:
Eddú Meléndez 2017-06-20 18:53:12 -05:00 committed by Stephane Nicoll
parent aac80e0b02
commit b1f96a4641
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"> <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> <title>Messages : Create</title>
</head> </head>
<body> <body>

View File

@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"> <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> <title>Messages : View all</title>
</head> </head>
<body> <body>

View File

@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"> <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> <title>Messages : View</title>
</head> </head>
<body> <body>