summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/errors/404.html
blob: c08c50365a5ed24de744a384688fc53e19bdca1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="de" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>ETL-Prozessor</title>
    <link rel="stylesheet" th:href="@{/main.css}" />
</head>
<body>
    <div th:replace="~{fragments.html :: nav}"></div>
    <main>
        <h1>Nichts gefunden</h1>
        <p>
            Die angeforderte Ressource oder Seite ist nicht vorhanden.
        </p>
    </main>
    <footer th:replace="~{fragments.html :: footer}"></footer>
</body>
</html>