Files
java-tutorials/spring-mvc-java/src/main/webapp/WEB-INF/templates/hello.html
T
Krzysztof Majewski 3453b7a18b BAEL-2513
2019-10-30 13:51:17 +01:00

14 lines
380 B
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8" />
</head>
<body>
<span th:text="#{welcome.text}">Hi</span>
<span th:text="${name}"> John </span>!
<span custom:name="James">Test</span>
<div th:replace="footer :: footer1">&copy; 2013 The Static
Templates</div>
</body>
</html>