1.1 --- a/pymove3d.py Fri Jan 17 16:12:33 2014 +0100
1.2 +++ b/pymove3d.py Fri Jan 17 16:40:57 2014 +0100
1.3 @@ -39,6 +39,15 @@
1.4 def coursematerial():
1.5 return render_template("coursematerial.html", act="coursematerial")
1.6
1.7 +@app.route("/imprint")
1.8 +def imprint():
1.9 + return render_template("imprint.html", act="imprint")
1.10 +
1.11 +@app.route("/pivacy")
1.12 +def privacy():
1.13 + return render_template("privacy.html", act="privacy")
1.14 +
1.15 +
1.16 @app.errorhandler(404)
1.17 def page_not_found(e):
1.18 return render_template("404.html"), 404