]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/downloads.html
Edit download section - new icons - multilanguage...
[people/shoehn/ipfire.org.git] / www / templates / downloads.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Downloads") }}{% end block %}
4
5 {% block content %}
6 <div class="post">
7 <a name="latest"></a>
8 <h3>{{ _("Download IPFire") }}</h3>
9
10 <img src="{{ static_url("images/box_ipfire.png") }}" alt="{{ _("CD-Box") }}" class="floatTR" />
11
12 {% if lang == "de" %}
13 <p>
14 Auf dieser Seite können Sie <strong>kostenlos</strong> die neueste
15 Version von IPFire herunterladen. Ältere Versionen oder
16 andere Downloadoptionen finden Sie weiter unten auf der Seite.
17 </p>
18
19 <p>
20 IPFire ist innerhalb von 15 bis 20 Minuten eingerichtet.
21 Eine <a href="http://wiki.ipfire.org/{{ lang }}/installation/start"
22 target="_blank">Installationsanleitung</a>
23 ist in unserem Wiki zu finden.
24 </p>
25
26 <p>
27 Sollte Ihnen diese Software gefallen, würden sich die Betreiber
28 über ein kleines <a href="donation">Dankeschön</a> freuen.
29 </p>
30 {% else %}
31 <p>
32 On this page one can download the latest version of IPFire
33 <strong>for free</strong>. Older versions and other downloads
34 can be retrieved on the linked pages below.
35 </p>
36
37 <p>
38 IPFire can be installed within 15 to 20 minutes. An
39 <a href="http://wiki.ipfire.org/{{ lang }}/installation/start"
40 target="_blank">installation guide</a> can be found on our wiki.
41 </p>
42
43 <p>
44 If you like this piece of software, developers appreciate your
45 <a href="donate">donations</a>.
46 </p>
47 {% end %}
48
49 <div class="bigdownload">
50 <a href="{{ release.iso.url }}">
51 {{ _("Begin download") }}<br />
52 {{ release.name }}
53 </a>
54 </div>
55
56 <table class="download">
57 {% for download in release.downloads %}
58 <tr class="{{ download.type }}">
59 <td class="icon">
60 <img src="{{ static_url("images/download_type_%s.png" % download.type) }}"
61 alt="{{ download.type }}" />
62 </td>
63 <td class="link">
64 <a href="{{ download.url }}">{{ _(download.desc) }}</a>
65 </td>
66 <td>
67 {{ _(download.rem) }}
68 </td>
69 </tr>
70 {% end %}
71 </table>
72
73 <br class="clear" />
74 </div>
75
76 <div class="post">
77 <a name="other"></a>
78 <h3>{{ _("Other download options") }}</h3>
79 <div class=pr_li>
80 <ul>
81 <li><a href="{{ link("downloads/all") }}">{{ _("See older downloads...") }}</a></li>
82 <li><a href="{{ link("downloads/development") }}">{{ _("See development releases...") }}</a></li>
83 <li><a href="{{ link("downloads/torrents") }}">{{ _("See all torrents...") }}</a></li>
84 </ul>
85 </div>
86 <br class="clear" />
87 </div>
88 {% end block %}
89
90 {% block sidebar %}
91 <h4><span>IPFire</span> Mirrors</h4>
92 <ul class="links">
93 <li class="first"><img src="{{ static_url("images/page_icons/download-mirrors_16.png") }}" alt="{{ _("IPFire Mirrors") }}" align="absmiddle"> <a href="{{ link("downloads/mirrors") }}" target="_blank">Mirror-Server</a></li>
94 </ul>
95 {{ modules.SidebarBanner(banner) }}
96
97 {% end block %}