]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/index.html
Improve text.
[ipfire.org.git] / www / templates / index.html
CommitLineData
940227cb 1{% extends "base-2.html" %}
81675874 2
3{% block title %}{{ _("Home") }}{% end block %}
4
5{% block content %}
940227cb
MT
6 <!--
7 <img src="{{ static_url("images/Network-1.png") }}") }}" alt="IPFire Network" />
8 <br class="clear" />
9 -->
10
7ff3de8a 11 <h3>IPFire - {{ _("An open source firewall solution") }}</h3>
940227cb 12 {% if lang == "de" %}
3e5f297c 13 <p>
940227cb
MT
14 <strong>IPFire</strong> ist eine Firewall-Distribution für den optimalen Einsatz
15 in mittleren bis kleinen Unternehmensnetzwerken und Heimnetzwerken.
3e5f297c 16 </p>
940227cb 17 <p>
e85b37ec 18 Obwohl das System extrem schlank gehalten wurde, können
940227cb
MT
19 Addons mit nur einem Klick installiert werden. Diese Eigenschaft unterscheidet
20 IPFire von anderen Distributionen: IPFire ist einfach zu administrieren
e85b37ec 21 hat aber genug Leistung um allen Anforderungen gewachsen zu sein.
940227cb
MT
22 </p>
23 {% else %}
24 <p>
25 <strong>IPFire</strong> is a server distribution with primary task as
26 a firewall. It also focuses on flexibility and scales very well from small to
27 middle-sized buisiness networks and home networks.
28 </p>
29 <p>
30 Along with this very shrinked and hardened system come lots of addons that
31 can be installed with a simple click. That's what makes IPFire different
32 from other distributions: It is easy to administer and has lots of power
33 for every challenge there might be.
34 </p>
35 {% end %}
36
37 <br class="clear" />
38
27066195 39 <h4>
940227cb 40 {{ _("See what makes IPFire so great:") }}
27066195 41 </h4>
940227cb
MT
42
43 <table class="blocks">
44 <tr>
45 <td class="block block1">
3145fa5d
MT
46 <img src="{{ static_url("images/icons/security.png") }}" alt="{{ _("Security") }}" />
47 <br class="clear" />
940227cb 48 <span>{{ _("Security") }}</span>
d9dec379
MT
49 {% if lang == "de" %}
50 <p>
51 Die oberste Priorität ist die Sicherheit des Systems.
27066195
MT
52 Zum Beispiel werden Sicherheits- updates regelmäßig und
53 zügig verteilt.
d9dec379
MT
54 </p>
55 {% else %}
56 <p>
57 As the most important issue: Security updates
27066195 58 are deployed regularly and promptly.
d9dec379
MT
59 </p>
60 {% end %}
940227cb
MT
61 <a href="/about#security">{{ _("Learn more.") }}</a>
62 </td>
63 <td class="block block2">
3145fa5d
MT
64 <img src="{{ static_url("images/icons/flexibility.png") }}" alt="{{ _("Flexibility") }}" />
65 <br class="clear" />
940227cb 66 <span>{{ _("Flexibility") }}</span>
d9dec379
MT
67 {% if lang == "de" %}
68 <p>
e85b37ec
MT
69 Heutzutage ist es auch wichtig flexibel auf verschiedenste
70 Anforderungen einzugehen. Genau wie IPFire...
d9dec379
MT
71 </p>
72 {% else %}
73 <p>
74 Nowadays it is also important to act flexible and fit
75 as best as possible into the environment. So does IPFire.
76 </p>
77 {% end %}
940227cb
MT
78 <p>
79 <a href="/about#concept">{{ _("Learn more.") }}</a>
80 </p>
81 </td>
82 <td class="block block3">
3145fa5d
MT
83 <img src="{{ static_url("images/icons/community.png") }}" alt="{{ _("Community") }}" />
84 <br class="clear" />
940227cb 85 <span>{{ _("Community") }}</span>
d9dec379
MT
86 {% if lang == "de" %}
87 <p>
e85b37ec 88 Verantwortlich für den Erfolg von IPFire ist eine aktive
d9dec379
MT
89 Community, die das Projekt vorantreibt.
90 </p>
91 {% else %}
92 <p>
93 The success of IPFire is based on the community that
27066195 94 is working on the code and spreading IPFire to the world.
d9dec379
MT
95 </p>
96 {% end %}
940227cb 97 <p>
3145fa5d 98 <a href="/about#itsfree">{{ _("Get involved.") }}</a>
940227cb
MT
99 </p>
100 </td>
101 </tr>
102 </table>
103
104 <p class="links">
105 {{ _("Quick links") }} &bull;
106 <a href="/about">{{ _("About IPFire") }}</a>
27066195
MT
107 <!-- &bull;
108 <a href="/about">{{ _("Screenshots") }}</a> -->
940227cb
MT
109 </p>
110
27066195 111 <div class="line"></div>
940227cb
MT
112
113 {% for item in latest_news %}
114 {{ modules.NewsItem(item) }}
115 {% end %}
116
117 <h4>{{ _("Recent news") }}:</h4>
118 <ul class="news">
119 {% for item in recent_news %}
120 <li>{{ modules.NewsLine(item) }}</li>
121 {% end %}
122 </ul>
123
124 <br class="clear" />
125
81675874 126 <p class="right">
940227cb
MT
127 <a class="feed" href="/news.rss">{{ _("Subscribe to the latest news of IPFire") }} (RSS)</a>
128 &bull;
129 <a href="/news">{{ _("All posts") }} &gt;&gt;</a>
81675874 130 </p>
131{% end block %}
132
133{% block sidebar %}
134 {{ modules.SidebarRelease() }}
940227cb 135 {{ modules.SidebarBanner() }}
81675874 136{% end block %}