From e11ae842f05ff63a953c73ce21fa54fa24ab9970 Mon Sep 17 00:00:00 2001 From: Lordiii Date: Tue, 19 Mar 2024 01:13:26 +0100 Subject: [PATCH] Define Impressum --- content/impressum.en.md | 5 +++ content/impressum.md | 18 ++++++++++ templates/base.html | 11 +++--- templates/impressum.html | 77 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 106 insertions(+), 5 deletions(-) create mode 100644 content/impressum.en.md create mode 100644 content/impressum.md create mode 100644 templates/impressum.html diff --git a/content/impressum.en.md b/content/impressum.en.md new file mode 100644 index 0000000..ed8eeda --- /dev/null +++ b/content/impressum.en.md @@ -0,0 +1,5 @@ ++++ +title = "Impressum" +redirect_to = "/impressung" +weight = 20 ++++ \ No newline at end of file diff --git a/content/impressum.md b/content/impressum.md new file mode 100644 index 0000000..edf8cd5 --- /dev/null +++ b/content/impressum.md @@ -0,0 +1,18 @@ ++++ +title = "Impressum" +weight = 20 +template = "impressum.html" +[extra] +bgb_vorstand = [ + "Patrick Günther", + "Lars Hüsemann", + "André Schäfer", + "Christian Beyer", + "Kristiane Grensemann" +] +bgb_erweitert = [ + "Michael Olsen (Radstelle)", + "Janik Wilder (Lasercutter)", + "Nils Wollenteit (Schließfachmanager)" +] ++++ \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 04a6c3b..4978cc0 100644 --- a/templates/base.html +++ b/templates/base.html @@ -13,9 +13,10 @@ - - - + + + {% if section.title %} {{ section.title }} | {{ config.title }} {% elif page.title %} @@ -58,7 +59,7 @@

© 2024 Kreativität trifft Technik | License: CC-BY-SA 4.0 | Impressum + href="/impressum">Impressum

@@ -68,7 +69,7 @@ {{ __tera_context }} {% endif %} - + diff --git a/templates/impressum.html b/templates/impressum.html new file mode 100644 index 0000000..df54f31 --- /dev/null +++ b/templates/impressum.html @@ -0,0 +1,77 @@ +{% extends "base.html" %} + +{% block content %} + +
+
+
+

Postfach

+

+ Kreativität trifft Technik e.V.
+ Postfach 5532
+ 26045 Oldenburg
+
+ Kontakt:
+ vorstand@kreativitaet-trifft-technik.de +

+
+
+

Vereinsanschrift

+

+ Kreativität trifft Technik e.V.
+ Bahnhofsplatz 10
+ 26122 Oldenburg
+
+ Kontakt:
+ vorstand@kreativitaet-trifft-technik.de +

+
+
+ +
+
+

Vorstand

+
    + {% for bgb in page.extra.bgb_vorstand %} +
  • {{bgb}}
  • + {% endfor %} +
+

+ (jeweils über den Verein zu laden) +

+
+
+

BGB-Beisitzer

+
    + {% for bgb in page.extra.bgb_erweitert %} +
  • {{bgb}}
  • + {% endfor %} +
+

+ (jeweils über den Verein zu laden) +

+
+
+ +
+
+

Finanzamt

+

+ Der Verein ist vom Finanzamt Oldenburg als + gemeinnützig anerkannt und im Registergericht im AG + Oldenburg unter der Registernummer VR 201044 + eingetragen. +

+
+
+

Verantwortung nach § 55 Abs. 2 RStV

+ + Patrick Günther
+ Kreativität trifft Technik e.V.
+ Bahnhofsplatz 10
+ 26122 Oldenburg +
+
+
+
+{% endblock content %} \ No newline at end of file