error.html (807B)
1 <!DOCTYPE html> 2 <html lang="en" xmlns:th="http://www.thymeleaf.org"> 3 <head th:replace="~{header :: head}"></head> 4 <head> 5 <title>Error - Wim Dupont</title> 6 </head> 7 <body> 8 <div class="container wrapper"> 9 <header> 10 <h1>Error</h1> 11 <div th:insert="~{navigation}"/> 12 </header> 13 <table> 14 <tr> 15 <td>Date</td> 16 <td th:text="${timestamp}"/> 17 </tr> 18 <tr> 19 <td>Path</td> 20 <td th:text="${path}"/> 21 </tr> 22 <tr> 23 <td>Error</td> 24 <td th:text="${error}"/> 25 </tr> 26 <tr> 27 <td>Status</td> 28 <td th:text="${status}"/> 29 </tr> 30 <tr> 31 <td>Message</td> 32 <td th:text="${message}"/> 33 </tr> 34 </table> 35 </div> 36 </body> 37 </html>