# HG changeset patch # User Jens-Uwe Grooss # Date 1400244807 -7200 # Node ID 75000430e87bf7cf41239b5a4e59e76baf8953b2 # Parent 6ef8ac6c34819db710449de26ff63ed0e0cbac96 ESKP Seite ge?ndert (Bildaussschnitt, Reihenfolge) 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") diff -r 6ef8ac6c3481 -r 75000430e87b static/images/eskp_info_o3.png Binary file static/images/eskp_info_o3.png has changed diff -r 6ef8ac6c3481 -r 75000430e87b templates/de/rst/eskp.rst --- a/templates/de/rst/eskp.rst Fri May 16 14:30:33 2014 +0200 +++ b/templates/de/rst/eskp.rst Fri May 16 14:53:27 2014 +0200 @@ -1,5 +1,3 @@ -`Earth System Knowledge Platform (ESKP)`_ -========================================= Wissensplattform „Erde und Umwelt“ =================================== @@ -15,5 +13,4 @@ .. _ESKP: http://www.eskp.de -.. _Earth System Knowledge Platform (ESKP): http://www.eskp.de .. _Helmholtz-Gemeinschaft: http://www.helmholtz.de diff -r 6ef8ac6c3481 -r 75000430e87b templates/de/rst/eskp_title.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/de/rst/eskp_title.rst Fri May 16 14:53:27 2014 +0200 @@ -0,0 +1,4 @@ +`Earth System Knowledge Platform (ESKP)`_ +========================================= + +.. _Earth System Knowledge Platform (ESKP): http://www.eskp.de diff -r 6ef8ac6c3481 -r 75000430e87b templates/eskp.html --- a/templates/eskp.html Fri May 16 14:30:33 2014 +0200 +++ b/templates/eskp.html Fri May 16 14:53:27 2014 +0200 @@ -1,15 +1,20 @@ {% extends "theme.html" %} {% block body %}
-
- +
- {{ content|safe }} + {{ headline|safe }}

ESKP Platform
+
+
+
+ {{ content|safe }} +
+
{% endblock %}