From 7186853043d79c84e8f88549c759df347ce1b5d9 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 20 Aug 2021 22:19:25 +0200 Subject: add footer with version info and about/imprint/privacy links --- templates/about.html | 25 +++++++++++++++++++++++++ templates/departure_list.html | 3 +++ templates/footer.html | 11 +++++++++++ templates/landing_page.html | 1 + templates/stops.html | 1 + 5 files changed, 41 insertions(+) create mode 100644 templates/about.html create mode 100644 templates/footer.html (limited to 'templates') 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 @@ + + + + {{ title }} + {% include 'header.html' %} + + + +{% include 'navbar.html' %} + +
+

+ NVM ist ein inoffizieller Abfahrtsmonitor für Nahverkehr in Deutschland + und Umgebung. + © 2021 Daniel Friesel + / @derfnull. + Der Quelltext steht unter + der GNU AGPL v3 als Open Source zur Verfügung. +

+
+ +{% include 'footer.html' %} + + + diff --git a/templates/departure_list.html b/templates/departure_list.html index 42ce550..a9cda01 100644 --- a/templates/departure_list.html +++ b/templates/departure_list.html @@ -52,5 +52,8 @@ + +{% include 'footer.html' %} + diff --git a/templates/footer.html b/templates/footer.html new file mode 100644 index 0000000..671007e --- /dev/null +++ b/templates/footer.html @@ -0,0 +1,11 @@ +
+
+Über NVM +· +Datenschutz +· +Impressum +
+Version {{ version }} +
+
diff --git a/templates/landing_page.html b/templates/landing_page.html index a97f55e..a3b7397 100644 --- a/templates/landing_page.html +++ b/templates/landing_page.html @@ -39,5 +39,6 @@ +{% include 'footer.html' %} diff --git a/templates/stops.html b/templates/stops.html index 5c47014..899376d 100644 --- a/templates/stops.html +++ b/templates/stops.html @@ -49,5 +49,6 @@ +{% include 'footer.html' %} -- cgit v1.2.3