diff --git a/app.py b/app.py index caa5966..0add273 100755 --- a/app.py +++ b/app.py @@ -50,6 +50,11 @@ def verein(): return render_template('verein.html') +@app.route('/kontakt.html') +def kontakt(): + return render_template('kontakt.html') + + @app.route('/datenschutz.html') def datenschutz(): return render_template('datenschutz.html') diff --git a/pages/rockharz2019.md b/pages/rockharz2019.md index 9795fed..8a0e496 100644 --- a/pages/rockharz2019.md +++ b/pages/rockharz2019.md @@ -1,5 +1,5 @@ title: Rockharz 2019 -date: 09.07.2020 +date: 09.07.2019 author: Merry description: So, nun sind wir auch wieder heimgekehrt aus dem wunderschönen Harz. Da gibt es nicht nur Käse, sondern auch ein richtig geiles Festival. diff --git a/templates/kontakt.html b/templates/kontakt.html new file mode 100644 index 0000000..43a7a58 --- /dev/null +++ b/templates/kontakt.html @@ -0,0 +1,22 @@ +{% extends "template.html" %} +{% block title %}Kontakt{% endblock %} +{% block content %} +

+ Über diese Kanäle könnt ihr Kontakt mit uns aufnehmen: +

+

+
+ Freunde des geordneten Lärms e.V.
+ Am Heinrichsberg 14
+ 90587 Veitsbronn
+

+

+  vorstand@fdgl.rocks +

+

+  FdgL bei Facebook +

+

+  FdgL bei Mastodon +

+{% endblock %} diff --git a/templates/template.html b/templates/template.html index d1010a9..b735ecf 100644 --- a/templates/template.html +++ b/templates/template.html @@ -25,6 +25,7 @@