1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{layout/layout}">
- <head>
- <title>Home Page</title>
- </head>
- <body>
- <div layout:fragment="content">
- <br>
- <div class="ui container">
- <h1>Error 404 : Not Found</h1>
- <div class="ui container error message">
- The requested page could not be found.
- </div>
- </div>
- </div>
- </body>
- </html>
|