summaryrefslogtreecommitdiff
path: root/templates/about.html
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-08-20 22:19:25 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-08-20 22:19:25 +0200
commit7186853043d79c84e8f88549c759df347ce1b5d9 (patch)
tree5e86074e3a3238826d113144dea8c58152612cf5 /templates/about.html
parentfa05d5ce9b06627a1c1a194fff059ce0cb608c5c (diff)
add footer with version info and about/imprint/privacy links
Diffstat (limited to 'templates/about.html')
-rw-r--r--templates/about.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/about.html b/templates/about.html
new file mode 100644
index 0000000..f6f9b26
--- /dev/null
+++ b/templates/about.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="de">
+<head>
+ <title>{{ title }}</title>
+ {% include 'header.html' %}
+</head>
+<body>
+
+{% include 'navbar.html' %}
+
+<div class="container">
+ <p>
+ NVM ist ein inoffizieller Abfahrtsmonitor für Nahverkehr in Deutschland
+ und Umgebung.
+ © 2021 <a href="https://finalrewind.org/me">Daniel Friesel</a>
+ / <a href="https://twitter.com/derfnull">@derfnull</a>.
+ Der <a href="https://github.com/derf/nvm">Quelltext</a> steht unter
+ der GNU AGPL v3 als Open Source zur Verfügung.
+ </p>
+</div>
+
+{% include 'footer.html' %}
+
+</body>
+</html>