diff -r 6ef8ac6c3481 -r 75000430e87b eskp.py --- a/eskp.py Fri May 16 14:30:33 2014 +0200 +++ b/eskp.py Fri May 16 14:53:27 2014 +0200 @@ -120,7 +120,9 @@ def eskp(): filename = os.path.join("templates", get_locale(), "rst", "eskp.rst") content = get_content(filename) - return render_template("/eskp.html", act="eskp", content=content) + filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst") + headline = get_content(filename) + return render_template("/eskp.html", act="eskp", content=content, headline=headline) @app.route("/ozoneloss")