]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/downloads-older.html
Import of new website.
[ipfire.org.git] / www / templates / downloads-older.html
1 {% extends "downloads-index.html" %}
2
3 {% block title %}{{ _("Ancient downloads") }}{% end block %}
4
5 {% block content %}
6 {% block information %}
7 <h3>{{ _("Ancient downloads") }}</h3>
8 <img src="{{ static_url("images/page_icons/download-all.png") }}" class="floatTR" border="0" alt="{{ _("Download IPFire") }}" />
9 <p>
10 {{ _("These are the ancient downloads of IPFire. They are just saved for historical reasons and should not be used in a productive environment.") }}
11 </p>
12
13 <p class="warning">
14 {{ _("Beware that these releases could lack possible security-fixes and so it is recommended to use the <em>latest</em> version.") }}
15 </p>
16
17 <p>
18 <a href="/">{{ _("Go back to latest stable downloads.") }}</a>
19 </p>
20
21 <br class="clear" />
22 {% end block %}
23
24 <table>
25 <tr>
26 <th>{{ _("Release") }}</th>
27 <th>{{ _("Published on") }}</th>
28 </tr>
29 {% for release in releases %}
30 <tr>
31 <td><a href="/release/{{ release.id }}">{{ release.name }}</a></td>
32 <td>{{ locale.format_date(release.date, shorter=True, relative=False) }}</td>
33 </tr>
34 {% end %}
35 </table>
36 {% end block %}