]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/downloads-index.html
Website update.
[people/shoehn/ipfire.org.git] / www / templates / downloads-index.html
1 {% extends "base-2.html" %}
2
3 {% block title %}Index{% end block %}
4
5 {% block body %}
6 <h3>{{ _("IPFire Download Center") }}</h3>
7
8 <!-- <img src="{{ static_url("images/box_ipfire.png") }}" alt="{{ _("CD-Box") }}" class="floatTR" /> -->
9
10 <p>
11 Welcome to the downloads section of the IPFire project.
12 <br />
13 At this place you can download every release of IPFire that was published
14 in the last years.
15 </p>
16
17 <p>
18 Please note that older or development releases could bring serious
19 security and stability issues that were solved in a more recent version.
20 <p>
21
22 <h4>Downloads on this site</h4>
23 <ul class="list">
24 <li><a href="/latest">{{ _("Latest release") }}</a></li>
25 <li><a href="/older">{{ _("List of older downloads") }}</a></li>
26 <li><a href="/development">{{ _("Development releases") }}</a></li>
27 <li><a href="/source">{{ _("Source code") }}</a></li>
28 </ul>
29
30 <br class="clear" />
31
32 {{ modules.ReleaseItem(release) }}
33
34 {% end block %}
35
36 {% block sidebar %}
37 <h4>{{ _("Download options") }}</h4>
38 <ul class="list">
39 <li><a href="/latest">{{ _("Latest release") }}</a></li>
40 <li><a href="/older">{{ _("Older downloads") }}</a></li>
41 <li><a href="/development">{{ _("Development releases") }}</a></li>
42 <li><a href="/source">{{ _("Source code") }}</a></li>
43 </ul>
44
45 <h4>{{ _("Other options") }}</h4>
46 <ul class="list">
47 <li><a href="/mirrors">{{ _("Mirror list") }}</a></li>
48 </ul>
49 {% end %}