Chatto/chatto/src/main/resources/templates/home.html

14 lines
299 B
HTML
Raw Normal View History

2019-09-17 07:33:38 +00:00
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Title</title>
</head>
<body>
<div>
Web Application. Passed parameter : <span th:text="${message}"></span>
</div>
<th:block th:each="userName: ${userNames}">
<div th:text="${userName}"></div>
</th:block>
</body>
</html>