]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/downloads.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / www / templates / downloads.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Get IPFire") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ _("Get IPFire") }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="span6 offset3">
12 <ul class="thumbnails">
13 <li class="span6">
14 <div class="thumbnail download-box ac">
15 <h4>
16 {{ release.name }}
17 <br>
18 <small>{{ locale.format_date(release.date, shorter=True) }}</small>
19 </h4>
20
21 <hr>
22
23 {{ modules.DownloadButton(release) }}
24 <br>
25
26 <a href="http://downloads.ipfire.org/latest">
27 <small>{{ _("More download options") }}</small>
28 </a>
29 </div>
30 </li>
31 </ul>
32 </div>
33 </div>
34
35 <hr>
36
37 <div class="row">
38 <div class="span7">
39 {% if lang == "de" %}
40 <p class="lead">
41 Lade IPFire jetzt <a href="/features/itsfree">kostenlos</a> herunter!
42 </p>
43 <p>
44 Wenn du IPFire das erste mal herunterlädst, dann zögere nicht
45 es endlich auszuprobieren. Es dauert nur 15 Minuten, bis
46 diese freie Firewall-Distribution auch dein Netzwerk schützt.
47 </p>
48 {% else %}
49 <p class="lead">
50 Download IPFire now and learn why IPFire is
51 <a href="/features/itsfree">free</a>!
52 </p>
53 <p>
54 If you are downloading IPFire for the first time, don't be afraid.
55 The installation process takes only about 15 minutes until you're
56 running a free firewall distribution that's actively protecting your network.
57 </p>
58 {% end %}
59 </div>
60
61 <div class="span5">
62 <div class="well">
63 <h4>{{ _("Get yourself involved") }}</h4>
64 {% if lang == "de" %}
65 <p>
66 Wir wünschen uns von jedem, der IPFire herunterlädt sich
67 selbst in das Projekt mit einzubringen.
68 </p>
69 <p>
70 Tritt der <a href="/getinvolved">Community</a> bei,
71 unterstütze die Entwicklung oder tätige eine
72 <a href="/donate">Spende</a>.
73 </p>
74 {% else %}
75 <p>
76 We ask everyone who downloads IPFire to contribute
77 themselves to the project.
78 </p>
79 <p>
80 Join the <a href="/getinvolved">community</a>, take
81 part in the development or <a href="/donate">donate</a>.
82 </p>
83 {% end %}
84 </div>
85 </div>
86 </div>
87 {% end block %}