equal
deleted
inserted
replaced
41 |
41 |
42 @app.route("/impressum") |
42 @app.route("/impressum") |
43 def impressum(): |
43 def impressum(): |
44 return render_template("impressum.html") |
44 return render_template("impressum.html") |
45 |
45 |
|
46 @app.route("/datenschutz") |
|
47 def datenschutz(): |
|
48 return render_template("datenschutzerklaerung.html") |
|
49 |
46 @app.errorhandler(404) |
50 @app.errorhandler(404) |
47 def page_not_found(e): |
51 def page_not_found(e): |
48 return render_template("404.html"), 404 |
52 return render_template("404.html"), 404 |
49 |
53 |
50 if __name__ == "__main__": |
54 if __name__ == "__main__": |