1.1 --- a/eskp.py Fri May 16 14:30:33 2014 +0200
1.2 +++ b/eskp.py Fri May 16 14:53:27 2014 +0200
1.3 @@ -120,7 +120,9 @@
1.4 def eskp():
1.5 filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
1.6 content = get_content(filename)
1.7 - return render_template("/eskp.html", act="eskp", content=content)
1.8 + filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
1.9 + headline = get_content(filename)
1.10 + return render_template("/eskp.html", act="eskp", content=content, headline=headline)
1.11
1.12
1.13 @app.route("/ozoneloss")
2.1 Binary file static/images/eskp_info_o3.png has changed
3.1 --- a/templates/de/rst/eskp.rst Fri May 16 14:30:33 2014 +0200
3.2 +++ b/templates/de/rst/eskp.rst Fri May 16 14:53:27 2014 +0200
3.3 @@ -1,5 +1,3 @@
3.4 -`Earth System Knowledge Platform (ESKP)`_
3.5 -=========================================
3.6
3.7 Wissensplattform „Erde und Umwelt“
3.8 ===================================
3.9 @@ -15,5 +13,4 @@
3.10
3.11
3.12 .. _ESKP: http://www.eskp.de
3.13 -.. _Earth System Knowledge Platform (ESKP): http://www.eskp.de
3.14 .. _Helmholtz-Gemeinschaft: http://www.helmholtz.de
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
4.2 +++ b/templates/de/rst/eskp_title.rst Fri May 16 14:53:27 2014 +0200
4.3 @@ -0,0 +1,4 @@
4.4 +`Earth System Knowledge Platform (ESKP)`_
4.5 +=========================================
4.6 +
4.7 +.. _Earth System Knowledge Platform (ESKP): http://www.eskp.de
5.1 --- a/templates/eskp.html Fri May 16 14:30:33 2014 +0200
5.2 +++ b/templates/eskp.html Fri May 16 14:53:27 2014 +0200
5.3 @@ -1,15 +1,20 @@
5.4 {% extends "theme.html" %}
5.5 {% block body %}
5.6 <div class="container">
5.7 - <div class="col-lg-12">
5.8 -
5.9 + <div class="col-lg-12">
5.10 <div class="row">
5.11 - {{ content|safe }}
5.12 + {{ headline|safe }}
5.13 </div>
5.14 <br>
5.15 <div>
5.16 <a class="reference external" href="http://www.eskp.de/startseite/#overlay/208"> <img src="/static/images/eskp_info_o3.png" alt="ESKP Platform"></a>
5.17 </div>
5.18 + <br>
5.19 + <div class="col-lg-12">
5.20 + <div class="row">
5.21 + {{ content|safe }}
5.22 + </div>
5.23 + <br>
5.24 </div>
5.25 </div>
5.26 {% endblock %}