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