]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/downloads.html
Initial checkin.
[ipfire.org.git] / www / templates / downloads.html
CommitLineData
81675874 1{% extends "base.html" %}
2
3{% block content %}
4 <div class="post">
5 <a name="latest"></a>
6 <h3>{{ _("Download IPFire") }}</h3>
7
8 <p>
9 {{ _("This is the latest version of the IPFire firewall distribution.") }}
10 Need to fill in some more text at this place.
11 </p>
12
13 <div class="bigdownload">
14 <span>{{ _("Begin download") }}</span>
15
16 </div>
17
18 <table class="download">
19 {% for download in release.downloads %}
20 <tr>
21 <td class="{{ download.type }}">
22 <a href="{{ download.url }}">{{ _(download.desc) }}</a>
23 </td>
24 </tr>
25 {% end %}
26 </table>
27
28 <br class="clear" />
29 </div>
30
31 <div class="post">
32 <a name="other"></a>
33 <h3>{{ _("Other download options") }}</h3>
34
35 <ul class="otherdownloads">
36 <li><a href="{{ link("downloads/all") }}">{{ _("See older downloads...") }}</a></li>
37 <li><a href="{{ link("downloads/development") }}">{{ _("See development releases...") }}</a></li>
38 <li><a href="{{ link("downloads/torrents") }}">{{ _("See all torrents...") }}</a></li>
39 </ul>
40 <br class="clear" />
41 </div>
42{% end block %}