guide.html (444B)
1 <!DOCTYPE html> 2 <html lang="en" xmlns:th="http://www.thymeleaf.org"> 3 <head th:replace="~{header :: head}"></head> 4 <head> 5 <title th:text="${title} + ' - Wim Dupont'"></title> 6 </head> 7 <body> 8 <div class="container wrapper"> 9 <header> 10 <h1 th:utext="${title}"/> 11 <div th:insert="~{navigation}"/> 12 </header> 13 <div th:if="${guide != null}"> 14 <div class="adoc" th:utext="${guide}"/> 15 </div> 16 </div> 17 </body> 18 </html>