diff options
| author | Paul-Christian Volkmer | 2023-07-25 16:50:20 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-07-25 16:50:20 +0200 |
| commit | cd46fa7e0904d3de182d947dc1820a9e833673e6 (patch) | |
| tree | ee2911e32763c7ce453efbaf8bc118d73df28572 /src/main/resources/templates/fragments.html | |
| parent | 46928964ef2b469a8c3f9eb997591ead0e6ea093 (diff) | |
Add start and statistics page
Diffstat (limited to 'src/main/resources/templates/fragments.html')
| -rw-r--r-- | src/main/resources/templates/fragments.html | 17 |
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 |
