]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/index.html
Update website layout.
[people/shoehn/ipfire.org.git] / templates / index.html
CommitLineData
60024cc8 1{% extends "base-1.html" %}
81675874 2
3{% block title %}{{ _("Home") }}{% end block %}
4
9b5ac075
MT
5{% block header %}
6 <div class="jumbotron masthead">
7 <div class="container">
8 <div class="row">
9 <div class="span4">
10 <img src="{{ static_url("images/tux/ipfire_tux_512x512.png") }}" alt="IPFire Logo" />
11 </div>
12
13 <div class="span8">
14 <h1>IPFire</h1>
15 <p class="lead">An Open Source Firewall Distribution</p>
16
17 <p>
18 <a class="btn btn-primary btn-large" href="/download">{{ _("Download IPFire") }}</a>
19 </p>
20
21 <ul class="masthead-links">
22 {% if latest_release %}
23 <li>
24 {{ _("Latest release") }}:
25 {{ latest_release.name }}<br>
26 {{ locale.format_date(latest_release.date, relative=False, shorter=True) }}
27 </li>
28 {% end %}
29 <li>
30 <a href="/donate">{{ _("Donate") }}</a>
31 </li>
32 </ul>
33 </div>
34 </div>
60024cc8
MT
35 </div>
36 </div>
9b5ac075 37{% end block %}
60024cc8 38
9b5ac075
MT
39{% block body %}
40 <br>
81675874 41
7771acea
MT
42 <p class="ac muted">
43 <strong>{{ _("New!") }}</strong>
44 {% if lang == "de" %}
45 IPFire <a href="http://wishlist.ipfire.org/">Wunschliste</a> - Die Crowdfunding-Plattform des IPFire-Projekts.
46 {% else %}
47 IPFire <a href="http://wishlist.ipfire.org">wishlist</a> - the crowd funding platform for the IPFire project.
48 {% end %}
49 </p>
50
51 <hr>
bb3da2b5
MT
52
53 <div class="row">
7771acea
MT
54 <div class="span6">
55 {% if lang == "de" %}
56 <p>
57 <strong>IPFire</strong> ist eine gehärtete Linux-Appliance-Distribution
58 mit primärem Einsatzzweck als Firewall.
59 </p>
60 <p>
61 Mit IPFire kommt eine unternehmensfähige Absicherung des Netzwerks
62 für Jedermann - vom Heimnetzwerk bis zum großen Unternehmen,
63 Schulnetzwerken und Behörden.
64 </p>
65 <p>
66 Besonderer Fokus liegt auf Sicherheit, Stabilität und einfache Benutzbarkeit.
d38296ff 67 Das Nachinstallieren von zusätzlichen Funktionen geht mit nur einem Klick.
7771acea
MT
68 </p>
69 {% else %}
70 <p>
71 <strong>IPFire</strong> is a hardened Linux appliance distribution
72 designed for use as a firewall.
73 </p>
74 <p>
75 It offers corporate-level network protection for anyone who needs it,
76 from home users all the way up to large corporations, school networks
77 and authorities.
78 </p>
79 <p>
80 IPFire focusses on security, stability and ease of use.
81 A variety of add-ons can be installed with a single click, to
82 add more features to the base system.
83 </p>
84 {% end %}
85
86 <br>
87
88 <div class="well">
89 <h4>{{ _("What's new?") }}</h4>
90
91 <ul class="unstyled">
92 {% for item in latest_news %}
93 <li>
94 [{{ locale.format_date(item.date, relative=True, shorter=True) }}] &dash;
95 <a href="/news/{{ item.slug }}">{{ item.title }}</a>
96 </li>
97 {% end %}
98 </ul>
99 </div>
100 </div>
101
102 <div class="span6 objectives">
103 <img class="icon pull-left" src="{{ static_url("images/icons/security.png") }}" alt="{{ _("Security") }}" />
104 <h4>{{ _("Security") }}</h4>
105
106 {% if lang == "de" %}
107 <p>
1483027c 108 Das wichtigste: Sicherheitsupdates werden
7771acea
MT
109 regelmäßig und zügig bereitgestellt.
110 </p>
111 {% else %}
112 <p>
113 As the most important issue: Security updates
114 are deployed regularly and promptly.
115 </p>
116 {% end %}
117
bb3da2b5 118 <hr>
7771acea
MT
119
120 <img class="icon pull-left" src="{{ static_url("images/icons/flexibility.png") }}" alt="{{ _("Flexibility") }}" />
121 <h4>{{ _("Flexibility") }}</h4>
122
123 {% if lang == "de" %}
124 <p>
125 IPFire ist ein schlankes System, welches leicht durch
126 zusätzliche Funktionen erweitert werden kann.
127 </p>
128 {% else %}
129 <p>
130 IPFire is a very small system and can be easily
131 customized with additional functions.
132 </p>
bb3da2b5 133 {% end %}
7771acea
MT
134
135 <hr>
136
137 <img class="icon pull-left" src="{{ static_url("images/icons/community.png") }}" alt="{{ _("Community") }}" />
138 <h4>{{ _("Open Source") }}</h4>
139
140 {% if lang == "de" %}
141 <p>
142 IPFire ist freie Software, welche von einer offenen
143 Community tagtäglich verbessert wird.
144 </p>
145 {% else %}
146 <p>
147 IPFire is free software and developed by an open community,
148 that makes IPFire better every single day.
149 </p>
150 {% end %}
151
152 <hr>
153
154 <p class="ac">
155 <a href="/features">{{ _("Read more") }} &raquo;</a>
156 </p>
bb3da2b5
MT
157 </div>
158 </div>
81675874 159{% end block %}