summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/fragments.html
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-07-25 16:50:20 +0200
committerPaul-Christian Volkmer2023-07-25 16:50:20 +0200
commitcd46fa7e0904d3de182d947dc1820a9e833673e6 (patch)
treeee2911e32763c7ce453efbaf8bc118d73df28572 /src/main/resources/templates/fragments.html
parent46928964ef2b469a8c3f9eb997591ead0e6ea093 (diff)
Add start and statistics page
Diffstat (limited to 'src/main/resources/templates/fragments.html')
-rw-r--r--src/main/resources/templates/fragments.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/templates/fragments.html b/src/main/resources/templates/fragments.html
new file mode 100644
index 0000000..369add3
--- /dev/null
+++ b/src/main/resources/templates/fragments.html
@@ -0,0 +1,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> \ No newline at end of file