-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
106 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = "Impressum" | ||
redirect_to = "/impressung" | ||
weight = 20 | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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)" | ||
] | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
|
||
<div class="container mt-3"> | ||
<div class="row mb-2"> | ||
<div class="col"> | ||
<h4 class="mb-3">Postfach</h4> | ||
<p> | ||
Kreativität trifft Technik e.V.<br> | ||
Postfach 5532<br> | ||
26045 Oldenburg<br> | ||
<br> | ||
Kontakt:<br> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
</div> | ||
<div class="col"> | ||
<h4 class="mb-3">Vereinsanschrift</h4> | ||
<p class="mb-3"> | ||
Kreativität trifft Technik e.V.<br> | ||
Bahnhofsplatz 10<br> | ||
26122 Oldenburg<br> | ||
<br> | ||
Kontakt:<br> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col"> | ||
<h4 class="mb-3">Vorstand</h4> | ||
<ul> | ||
{% for bgb in page.extra.bgb_vorstand %} | ||
<li>{{bgb}}</li> | ||
{% endfor %} | ||
</ul> | ||
<p class="ps-2"> | ||
(jeweils über den Verein zu laden) | ||
</p> | ||
</div> | ||
<div class="col"> | ||
<h4 class="mb-3">BGB-Beisitzer</h4> | ||
<ul> | ||
{% for bgb in page.extra.bgb_erweitert %} | ||
<li>{{bgb}}</li> | ||
{% endfor %} | ||
</ul> | ||
<p class="ps-2"> | ||
(jeweils über den Verein zu laden) | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col"> | ||
<h4 class="mb-3">Finanzamt</h4> | ||
<p> | ||
Der Verein ist vom Finanzamt Oldenburg als | ||
gemeinnützig anerkannt und im Registergericht im AG | ||
Oldenburg unter der Registernummer <b>VR 201044</b> | ||
eingetragen. | ||
</p> | ||
</div> | ||
<div class="col"> | ||
<h4 class="mb-3">Verantwortung nach § 55 Abs. 2 RStV</h4> | ||
<pw> | ||
Patrick Günther<br> | ||
Kreativität trifft Technik e.V.<br> | ||
Bahnhofsplatz 10<br> | ||
26122 Oldenburg | ||
</pw> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock content %} |