equal
deleted
inserted
replaced
|
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> |
|
8 |
|
9 |
|
10 |
|
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> |
|
15 |
|
16 {% endfor %} |
|
17 </ul> |
|
18 |
|
19 <img src="/static/images/ozoneloss/eskp_clams_do3_{{ year }}.svg" alt="{{ year }}"> |
|
20 </div> |
|
21 |
|
22 </div> |
|
23 {% endblock %} |