]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/index.html
Import of new website.
[people/shoehn/ipfire.org.git] / www / templates / index.html
1 {% extends "base-2.html" %}
2
3 {% block title %}{{ _("Home") }}{% end block %}
4
5 {% block content %}
6 <!--
7 <img src="{{ static_url("images/Network-1.png") }}") }}" alt="IPFire Network" />
8 <br class="clear" />
9 -->
10
11 <h3>IPFire - {{ _("An open source firewall distribution") }}</h3>
12 {% if lang == "de" %}
13 <p>
14 <strong>IPFire</strong> ist eine Firewall-Distribution für den optimalen Einsatz
15 in mittleren bis kleinen Unternehmensnetzwerken und Heimnetzwerken.
16 </p>
17 <p>
18 Obwohl das System extrem schlank gehalten und gehärtet wurde und können
19 Addons mit nur einem Klick installiert werden. Diese Eigenschaft unterscheidet
20 IPFire von anderen Distributionen: IPFire ist einfach zu administrieren
21 aber hat genug Leistung allen Anforderungen gewachsen zu sein.
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
39 <p>
40 {{ _("See what makes IPFire so great:") }}
41 </p>
42
43 <table class="blocks">
44 <tr>
45 <td class="block block1">
46 <span>{{ _("Security") }}</span>
47 <p>
48 As the most important issue: Security updates
49 are deployed regularly and in a timely manner.
50 </p>
51 <a href="/about#security">{{ _("Learn more.") }}</a>
52 </td>
53 <td class="block block2">
54 <span>{{ _("Flexibility") }}</span>
55 <p>
56 Nowadays it is also important to act flexible and fit
57 as best as possible into the environment. So does IPFire.
58 </p>
59 <p>
60 <a href="/about#concept">{{ _("Learn more.") }}</a>
61 </p>
62 </td>
63 <td class="block block3">
64 <span>{{ _("Community") }}</span>
65 <p>
66 The success of IPFire is based on the community that
67 is working on the code an spreading IPFire to the world.
68 </p>
69 <p>
70 <a href="/about#community">{{ _("Get involved.") }}</a>
71 </p>
72 </td>
73 </tr>
74 </table>
75
76 <p class="links">
77 {{ _("Quick links") }} &bull;
78 <a href="/about">{{ _("About IPFire") }}</a>
79 &bull;
80 <a href="/screenshots">{{ _("Screenshots") }}</a>
81 </p>
82
83 <br class="clear" />
84
85 {% for item in latest_news %}
86 {{ modules.NewsItem(item) }}
87 {% end %}
88
89 <h4>{{ _("Recent news") }}:</h4>
90 <ul class="news">
91 {% for item in recent_news %}
92 <li>{{ modules.NewsLine(item) }}</li>
93 {% end %}
94 </ul>
95
96 <br class="clear" />
97
98 <p class="right">
99 <a class="feed" href="/news.rss">{{ _("Subscribe to the latest news of IPFire") }} (RSS)</a>
100 &bull;
101 <a href="/news">{{ _("All posts") }} &gt;&gt;</a>
102 </p>
103 {% end block %}
104
105 {% block sidebar %}
106 {{ modules.SidebarRelease() }}
107 {{ modules.SidebarBanner() }}
108 {% end block %}