]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/downloads-all.html
Initial checkin.
[people/shoehn/ipfire.org.git] / www / templates / downloads-all.html
1 {% extends "base.html" %}
2
3 {% block content %}
4 <div class="post">
5 <h3>{{ _("Download IPFire") }}</h3>
6
7 <p>
8 {{ _("These are the ancient downloads of IPFire. They are just saved for historical reasons and should not be used in a productive environment.") }}
9 </p>
10
11 <p>
12 <a href="{{ link("downloads") }}">{{ _("Get back to latest downloads.") }}</a>
13 </p>
14
15 <br class="clear" />
16 </div>
17
18 {% for release in releases.stable %}
19 {% if not release == releases.latest %}
20 {{ modules.ReleaseItem(release) }}
21 {% end %}
22 {% end %}
23 {% end block %}