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