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