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