author | Reimar Bauer <rb.proj AT googlemail DOT com> |
Tue, 06 May 2014 13:02:17 +0200 | |
changeset 244 | 0310fe6b2beb |
parent 241 | 9bfd98868419 |
child 247 | 6a8a901ba550 |
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_ozone_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_{{ year }}.svg" alt="{{ year }}">
20 </div>
22 </div>
23 {% endblock %}