aswi2020vldc-gitlab/src/main/webapp/WEB-INF/templates/index.html @ 58fdf8f4
1 | 26342eaf | Vojtěch Danišík | <!DOCTYPE html>
|
---|---|---|---|
2 | |||
3 | <html
|
||
4 | xmlns:th="http://www.thymeleaf.org" |
||
5 | lang="cs" |
||
6 | >
|
||
7 | <head th:replace="fragments/headers :: head(~{::title})"> |
||
8 | <title>Title</title> |
||
9 | </head>
|
||
10 | <body>
|
||
11 | <nav th:replace="fragments/headers :: nav"></nav> |
||
12 | <div th:text="${message}"></div> |
||
13 | <p th:each="result : ${sqlResults}" th:text="${result}"><p/> |
||
14 | </body>
|
||
15 | </html>
|