]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/modules/sidebar-release.html
Initial checkin.
[people/shoehn/ipfire.org.git] / www / templates / modules / sidebar-release.html
1 {% extends "sidebar-item.html" %}
2
3 {% block heading %}{{ _("release information") }}{% end block %}
4
5 {% block body %}
6 <p>
7 <img src="{{ static_url("images/ipfire_download.png") }}" alt="Tux Logo" />
8 </p>
9
10 <p>
11 <strong>{{ _("Current version") }}</strong>:
12 <br />
13 <a href="{{ link("downloads") }}">{{ releases.latest.name }}</a>
14 </p>
15
16 {% if releases.latest_devel %}
17 <p>
18 <strong>{{ _("Current unstable") }}</strong>:
19 <br />
20 <a href="{{ link("downloads/development") }}">{{ releases.latest_devel.name }}</a>
21 </p>
22 {% end %}
23 {% end block %}