Implemented an example for a controller, that fetches remote-data
[demos/testing] / src / main / resources / templates / layout.html
1 <!DOCTYPE HTML>
2 <html xmlns:th="http://www.thymeleaf.org">
3 <head>
4   <title>Shows Remote-Content</title>
5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6 </head>
7 <body>
8   <h1>Remote-Content:</h1>
9   <p th:text="${text}">TEXT</p>
10 </body>
11 </html>