]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/index.html
Initial checkin.
[people/shoehn/ipfire.org.git] / www / templates / index.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Home") }}{% end block %}
4
5 {% block content %}
6 <h3>{{ _("More security for your network") }}</h3>
7
8 <p>
9 {% if lang == "de" %}
10 Das <strong>IPFire</strong>-System ist eine Linux-Distribution, welche
11 die Zielsetzung hat ein einfach zu installierendes Grundsystem zu bieten
12 und dabei ein <strong>hohes Sicherheitsniveau</strong> zu gewährleisten.
13 <br />
14 <strong>IPFire</strong> ist komplett über sein intuitiv zu bedienendes
15 Webinterface zu konfigurieren und bietet sowohl <strong>Anfängern</strong>,
16 als auch erfahrenen <strong>Administratoren</strong> eine Fülle von
17 Einstellungsmöglichkeiten. Ein <strong>Schwerpunkt</strong> bei der
18 Weiterentwickling legen die erfahrenen Entwickler klar auf regelmäßige
19 System und vor allem <strong>Sicherheitsupdates</strong>.
20
21 Durch den integrierten Paketmanager <strong>Pakfire</strong> lässt sich
22 der <strong>IPFire</strong> mit diversen
23 <a href="http://wiki.ipfire.org/de/addons/start" target="_blank">Addons</a>,
24 bishin zu einem Server-System erweitern.
25 {% else %}
26 <strong>IPFire</strong> is a linux-distribution that focusses on easy
27 setup, good handling and a <strong>high niveau of security</strong>.
28 <br />
29 It is operable via an intuitive webinterface, which offers a lot of
30 playground for <strong>beginners</strong> and even experienced
31 <strong>administrators</strong>.
32 <strong>IPFire</strong> is maintained by experienced developers, who
33 are really concerned about security and regulary updates to
34 <strong>keep it secure</strong>.
35
36 <strong>IPFire</strong> ships with a custom built paket-manager called
37 <strong>Pakfire</strong>, so the system can be expanded with various
38 <a href="http://wiki.ipfire.org/en/addons/start" target="_blank">addons</a>.
39 {% end %}
40 </p>
41
42 <div class="cebit_button">
43 <div class="cebit_button_text">
44 <a href="cebit">{{ _("CeBIT-Donation") }}</a>
45 </div>
46 </div>
47
48 <h3>{{ _("News") }}</h3>
49
50 {% for item in news.get(2) %}
51 {{ modules.NewsItem(item) }}
52 {% end %}
53
54 <p class="right">
55 <a href="{{ link("news") }}">{{ _("Previous posts >>") }}</a>
56 </p>
57 {% end block %}
58
59 {% block sidebar %}
60 {{ modules.SidebarRelease() }}
61 {{ modules.SidebarBanner(banner) }}
62 {% end block %}