]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/index.html
Merge branch 'planet' into next
[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 <div class=post>
7 <h3>{{ _("More security for your network") }}</h3>
8 <p>
9 {% if lang == "de" %}
10 Das <strong>IPFire</strong>-System ist eine Linux-Distribution, mit der Zielsetzung ein einfach zu
11 installierendes Grundsystem zu bieten und dabei ein <strong>hohes Sicherheitsniveau</strong> zu gewährleisten.
12 <strong>IPFire</strong> ist komplett über sein intuitiv zu bedienendes Webinterface zu konfigurieren
13 und bietet sowohl <strong>Anfängern</strong>, als auch erfahrenen <strong>Administratoren</strong> eine Fülle von
14 Einstellungsmöglichkeiten. Einen <strong>Schwerpunkt</strong> bei der Weiterentwicklung legen die erfahrenen Entwickler
15 auf regelmäßige System- und vor allem <strong>Sicherheitsupdates</strong>.<br /><br />
16 Durch den integrierten Paketmanager <strong>Pakfire</strong> lässt sich der <strong>IPFire</strong> mit diversen
17 <a href="http://wiki.ipfire.org/de/addons/start" target="_blank">Addons</a>,
18 zu einem Server-System erweitern.
19 {% else %}
20 <strong>IPFire</strong> is a linux-distribution that focusses on easy setup, good handling and a
21 <strong>high niveau of security</strong>.<br /> It is operable via an intuitive webinterface, which offers a
22 lot of playground for <strong>beginners</strong> and even experienced <strong>administrators</strong>.
23 <strong>IPFire</strong> is maintained by experienced developers, who are really concerned about security and regulary
24 updates to <strong>keep it secure</strong>.<br /><br />
25 <strong>IPFire</strong> ships with a custom built paket-manager called <strong>Pakfire</strong>, so the system can be
26 expanded with various <a href="http://wiki.ipfire.org/en/addons/start" target="_blank">addons</a>.
27 {% end %}
28 </p>
29 <img src="{{ static_url("images/Network-1.png") }}") }}" alt="IPFire Network" />
30 <div class="button">
31 <div class="button_text">
32 <a href="download">Download&nbsp;&nbsp;IPFire 2.7</a>
33 </div>
34 </div>
35 </div>
36
37 <div class=post>
38 <h3>{{ _("News") }}</h3>
39
40 {% for item in news.get(2) %}
41 {{ modules.NewsItem(item) }}
42 {% end %}
43 </div>
44 <p class="right">
45 <a href="{{ link("news") }}">{{ _("Previous posts >>") }}</a>
46 </p>
47 {% end block %}
48
49 {% block sidebar %}
50 {{ modules.SidebarRelease() }}
51
52 <h4><span>Internet Relay</span> Chat</h4>
53 <p>
54 Server: irc.freenode.net<br />
55 Channel: #ipfire<br />
56 <a href="http://webchat.freenode.net/?channels=ipfire" target="_blank">Web-Chat</a>
57 </p>
58
59 {{ modules.SidebarBanner(banner) }}
60
61 <h4><span>RSS</span> feed</h4>
62 <p>
63 {% if lang == "de" %}
64 <a class="feed" href="news.rss">IPFire - News</a><br />
65 {% else %}
66 <a class="feed" href="news.rss">IPFire - News</a><br />
67 {% end %}
68 </p>
69
70 {% end block %}