personalweb

Archived
git clone git://git.wimdupont.com/personalweb.git
Log | Files | Refs | README | LICENSE

article.html (448B)


      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="${article != null}">
     14         <div class="adoc" th:utext="${article}"/>
     15     </div>
     16 </div>
     17 </body>
     18 </html>