guides.html (494B)
1 <!DOCTYPE html> 2 <html lang="en" xmlns:th="http://www.thymeleaf.org"> 3 <head th:replace="~{header :: head}"></head> 4 <head> 5 <title>Guides - Wim Dupont</title> 6 </head> 7 <body> 8 <div class="container wrapper"> 9 <header> 10 <h1>Guides</h1> 11 <div th:insert="~{navigation}"/> 12 </header> 13 <ul> 14 <tr th:each="guide : ${guides}"> 15 <li><a th:href="@{/guides/{guide}(guide=${guide.title})}">[[${guide.title}]]</a></li> 16 </tr> 17 </ul> 18 </div> 19 </body> 20 </html>