-
Notifications
You must be signed in to change notification settings - Fork 4
/
error.html
37 lines (26 loc) · 1.09 KB
/
error.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<head lang="en">
<title th:text="${title}"></title>
<!-- ------- Style, icons, etc ------- -->
<div th:replace="fragments/head :: head"></div>
<script async defer data-domain="compbio.imm.medicina.ulisboa.pt" data-api="/api/event" src="/js/plausible.js"></script>
</head>
<body class="nav-less-aware">
<div th:replace="fragments/navbar :: navbar"></div>
<!-- 404 Page Not Found -->
<div id="error" class="container" th:if="${status == 404}">
<h1>Error <span th:text="${status}"></span></h1>
<span>The page you are looking for was not found...</span>
</div>
<!-- Default error message -->
<div id="error" class="container" th:if="${status != 404}">
<h1>Error <span th:text="${status}"></span></h1>
<span th:text="${message}"></span>
<hr>
<b>Stack Trace:</b>
<small><pre><span th:utext="${stackTrace}"></span></pre></small>
</div>
</body>
</html>