diff -r 5d8746bee588 -r 73dea50cd9c5 pymove3d.py --- a/pymove3d.py Fri Jan 17 16:12:33 2014 +0100 +++ b/pymove3d.py Fri Jan 17 16:40:57 2014 +0100 @@ -39,6 +39,15 @@ def coursematerial(): return render_template("coursematerial.html", act="coursematerial") +@app.route("/imprint") +def imprint(): + return render_template("imprint.html", act="imprint") + +@app.route("/pivacy") +def privacy(): + return render_template("privacy.html", act="privacy") + + @app.errorhandler(404) def page_not_found(e): return render_template("404.html"), 404