diff -r bdcb12709012 -r 1de16074dd73 eskp.py --- a/eskp.py Thu May 08 11:12:20 2014 +0200 +++ b/eskp.py Thu May 08 13:38:54 2014 +0200 @@ -178,7 +178,8 @@ def eskp(): filename = os.path.join("templates", get_locale(), "rst", "eskp.rst") content = get_content(filename) - return render_template("/content.html", act="eskp", content=content) + return render_template("/eskp.html", act="eskp", content=content) + @app.route("/ozoneloss") def task(): @@ -202,7 +203,7 @@ def submission(): filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst") content = get_content(filename) - return render_template("/content.html", act="submission", content=content) + return render_template("/iek-7.html", act="submission", content=content) @app.route("/imprint")