summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/fragments.html
blob: 369add3cb157a01f01a54465a576e92e264e31a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" th:href="@{/style.css}" />
</head>
<body>
    <div th:fragment="nav">
        <nav>
            <ul>
                <li><a th:href="@{/}">Übersicht</a></li>
                <li><a th:href="@{/statistics}">Statistiken</a></li>
            </ul>
        </nav>
    </div>
</body>
</html>