author | Reimar Bauer <rb.proj AT googlemail DOT com> |
Thu, 15 May 2014 11:06:22 +0200 | |
changeset 264 | bdf11bb4cb98 |
parent 250 | a4adf5a448f3 |
child 288 | 8f9f53afe855 |
permissions | -rw-r--r-- |
1 {% extends "theme.html" %}
2 {% block body %}
3 <div class="container">
4 <div class="col-lg-12">
5 <div class="row">
6 {{ content|safe }}
7 </div>
11 <ul class="nav navbar-nav navbar-right">
12 {% for href, caption in get_vpsc_dates(): %}
13 {%- if href[1:] == act -%}
14 <li class="active">{% else %} <li>{% endif %}<a href="{{ href }}" >{{ caption }}</a></li>
16 {% endfor %}
17 </ul>
19 <img src="/static/images/ozoneloss/eskp_vpsc_{{ year }}.svg" alt="{{ year }}">
21 <div class="row">
22 {{ content_explanation|safe }}
23 {{ modal_info|safe }}
24 </div>
26 </div>
28 </div>
29 {% endblock %}