diff -r a8cac2a2b9bb -r d9a3c0cebf6b pymove3d.py --- a/pymove3d.py Mon Dec 09 08:35:50 2013 +0100 +++ b/pymove3d.py Tue Dec 10 07:23:48 2013 +0100 @@ -39,6 +39,10 @@ def coursematerial(): return render_template("coursematerial.html", act="coursematerial") +@app.route("/impressum") +def impressum(): + return render_template("impressum.html") + @app.errorhandler(404) def page_not_found(e): return render_template("404.html"), 404