400.html 562 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head th:insert="~{layout :: head}">
  4. <meta charset="UTF-8">
  5. </head>
  6. <body class="d-flex flex-column min-vh-100">
  7. <nav th:insert="~{layout :: nav-top}"></nav>
  8. <main class="container text-center my-auto">
  9. <h1 class="display-4">400</h1>
  10. <p class="lead">Houve uma situação inesperada em nossa Página.</p>
  11. <a th:href="@{/}" class="btn btn-dark">Voltar para o início</a>
  12. </main>
  13. <footer th:insert="~{layout :: footer}"></footer>
  14. <div th:insert="~{layout :: script}"></div>
  15. </body>
  16. </html>