Skip to content

Commit

Permalink
Define Impressum
Browse files Browse the repository at this point in the history
  • Loading branch information
lordiii committed Mar 19, 2024
1 parent 5033a6d commit e11ae84
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 5 deletions.
5 changes: 5 additions & 0 deletions content/impressum.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = "Impressum"
redirect_to = "/impressung"
weight = 20
+++
18 changes: 18 additions & 0 deletions content/impressum.md
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)"
]
+++
11 changes: 6 additions & 5 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{config.description}}">
<meta name="author" content="{{config.author}}">

<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">


<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path=" rss.xml
", trailing_slash=false) }}">

{% if section.title %}
<title>{{ section.title }} | {{ config.title }}</title>
{% elif page.title %}
Expand Down Expand Up @@ -58,7 +59,7 @@
<p style="text-align: center;">
© 2024 <a href="{{config.base_url}}">Kreativität trifft Technik</a> | License: <a
href="https://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA 4.0</a> | <a
href="/impressum.dark.html">Impressum</a>
href="/impressum">Impressum</a>
</p>
</div>
</footer>
Expand All @@ -68,7 +69,7 @@
{{ __tera_context }}
</pre>
{% endif %}

</div>

<script src="/js/site.js"></script>
Expand Down
77 changes: 77 additions & 0 deletions templates/impressum.html
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 %}

0 comments on commit e11ae84

Please sign in to comment.