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/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 @@