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("/imprint") |
|
43 def imprint(): |
|
44 return render_template("imprint.html", act="imprint") |
|
45 |
|
46 @app.route("/pivacy") |
|
47 def privacy(): |
|
48 return render_template("privacy.html", act="privacy") |
|
49 |
|
50 |
42 @app.errorhandler(404) |
51 @app.errorhandler(404) |
43 def page_not_found(e): |
52 def page_not_found(e): |
44 return render_template("404.html"), 404 |
53 return render_template("404.html"), 404 |
45 |
54 |
46 if __name__ == "__main__": |
55 if __name__ == "__main__": |