1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/templates/ozoneloss_vpsc.html Wed May 07 17:01:53 2014 +0200
1.3 @@ -0,0 +1,23 @@
1.4 +{% extends "theme.html" %}
1.5 +{% block body %}
1.6 +<div class="container">
1.7 + <div class="col-lg-12">
1.8 + <div class="row">
1.9 + {{ content|safe }}
1.10 + </div>
1.11 +
1.12 +
1.13 +
1.14 +<ul class="nav navbar-nav navbar-right">
1.15 +{% for href, caption in get_vpsc_dates(): %}
1.16 + {%- if href[1:] == act -%}
1.17 + <li class="active">{% else %} <li>{% endif %}<a href="{{ href }}" >{{ caption }}</a></li>
1.18 +
1.19 +{% endfor %}
1.20 +</ul>
1.21 +
1.22 + <img src="/static/images/ozoneloss/eskp_vpsc_{{ year }}.svg" alt="{{ year }}">
1.23 + </div>
1.24 +
1.25 +</div>
1.26 +{% endblock %}