Skip to content
Snippets Groups Projects

Feat/error page

Merged Jean-Baptiste Nizet requested to merge feat/error-page into epic/merge-faidare-dd
<!DOCTYPE html>
<html
xmlns:th="http://www.thymeleaf.org"
th:replace="~{layout/main :: layout(title=~{::title}, content=~{::main}, script=~{::script})}"
>
<head>
<title>Error</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<main>
<h1 class="display-1" th:text="${status}">404</h1>
<p th:if="${status == 404}">Sorry, the requested page does not exist.</p>
<p class="lead" th:if="${status != 404}">
Unexpected error: <span th:text="${error}">.</span>
</p>
</main>
</body>
</html>
Loading