equal
deleted
inserted
replaced
37 |
37 |
38 @app.route("/coursematerial") |
38 @app.route("/coursematerial") |
39 def coursematerial(): |
39 def coursematerial(): |
40 return render_template("coursematerial.html", act="coursematerial") |
40 return render_template("coursematerial.html", act="coursematerial") |
41 |
41 |
|
42 @app.route("/impressum") |
|
43 def impressum(): |
|
44 return render_template("impressum.html") |
|
45 |
42 @app.errorhandler(404) |
46 @app.errorhandler(404) |
43 def page_not_found(e): |
47 def page_not_found(e): |
44 return render_template("404.html"), 404 |
48 return render_template("404.html"), 404 |
45 |
49 |
46 if __name__ == "__main__": |
50 if __name__ == "__main__": |