]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/index.html
Some text updates.
[ipfire.org.git] / www / templates / index.html
CommitLineData
60024cc8 1{% extends "base-1.html" %}
81675874 2
3{% block title %}{{ _("Home") }}{% end block %}
4
60024cc8
MT
5{% block body %}
6 <div class="pull-right">
7 <strong>{{ _("Follow us") }}</strong>
8 <a href="https://www.facebook.com/IPFire.org"><img src="{{ static_url("images/icons/social/facebook.png") }}" alt="Facebook"></a>
9 <a href="https://twitter.com/ipfire"><img src="{{ static_url("images/icons/social/twitter.png") }}" alt="Twitter"></a>
10 <a href="/news.rss"><img src="{{ static_url("images/icons/social/rss.png") }}" alt="RSS"></a>
11 </div>
940227cb 12
60024cc8
MT
13 <div class="page-header">
14 <h1>
15 IPFire
16 <small>{{ _("An Open Source Firewall Solution") }}</small>
17 </h1>
18 </div>
940227cb 19
60024cc8
MT
20 {% if hostname == "dev.ipfire.org" %}
21 <div class="row">
22 <div class="span12">
23 <div style="text-align: center;">
24 <img src="http://placehold.it/640x380" alt="Thumbnail">
25 </div>
26 <hr>
27 </div>
28 </div>
29 {% end %}
940227cb 30
60024cc8
MT
31 <div class="row">
32 <div class="span9">
33 <div class="row">
34 <div class="span9">
35 {% if lang == "de" %}
36 <p>
37 <strong>IPFire</strong> ist eine gehärtete Linux-Appliance-Distribution
38 mit primärem Einsatzzweck als Firewall.
39 </p>
40 <p>
41 Mit IPFire kommt eine unternehmensfähige Absicherung des Netzwerks
42 für Jedermann - vom Heimnetzwerk bis zum großen Unternehmen,
43 Schulnetzwerken und Behörden.
44 IPFire fokussiert Sicherheit, Stabilität und einfache Benutzbarkeit.
45 Die Core-Distribution erlaubt das nachinstallieren von Addons mit
46 nur einem einzigen Klick.
47 </p>
48 <p>
49 IPFire ist einfach, schnell und <a href="/features/itsfree">kostet nichts</a>.
98e5a23d 50 Das Projekt finanziert sich allein durch <a href="/donate">Spenden</a>.
60024cc8
MT
51 </p>
52 {% else %}
53 <p>
54 <strong>IPFire</strong> is a hardened Linux appliance distribution
55 designed for use as a firewall.
56 </p>
57 <p>
58 It offers corporate-level network protection for anyone who needs it,
59 from homes users all the way up to large corporations, school networks
60 and authorities.
61 IPFire focusses on security, stability and ease of use. Along with the
62 core distribution, there are a variety of add-ons which can be installed
63 with a single click.
64 </p>
65 <p>
66 IPFire is easily deployed, fast and <a href="/features/itsfree">costs nothing</a>.
98e5a23d 67 The project is entirely funded by <a href="/donate">donations</a>.
60024cc8
MT
68 </p>
69 {% end %}
70 <hr>
71 </div>
72 </div>
54b8df1a 73
60024cc8
MT
74 <div class="row">
75 <div class="span3">
76 <h3>
77 <img src="{{ static_url("images/icons/security.png") }}" alt="{{ _("Security") }}" />
78 {{ _("Security") }}
79 </h3>
54b8df1a 80
60024cc8
MT
81 {% if lang == "de" %}
82 <p>
83 Das wichtigste: Sicherheits- updates werden
84 regelmäßig und zügig bereitgestellt.
85 </p>
86 {% else %}
87 <p>
88 As the most important issue: Security updates
89 are deployed regularly and promptly.
90 </p>
91 {% end %}
92 </div>
940227cb 93
60024cc8
MT
94 <div class="span3">
95 <h3>
96 <img src="{{ static_url("images/icons/flexibility.png") }}" alt="{{ _("Flexibility") }}" />
97 {{ _("Flexibility") }}
98 </h3>
940227cb 99
60024cc8
MT
100 {% if lang == "de" %}
101 <p>
102 IPFire ist ein schlankes System, welches leicht durch
103 zusätzliche Funktionen erweitert werden kann.
104 </p>
105 {% else %}
106 <p>
107 IPFire is a very small system (the install image is about 60MB)
108 and can be easily customized with additional functions.
109 </p>
110 {% end %}
111 </div>
940227cb 112
60024cc8
MT
113 <div class="span3">
114 <h3>
115 <img src="{{ static_url("images/icons/community.png") }}" alt="{{ _("Community") }}" />
116 {{ _("Open Source") }}
117 </h3>
57a86240 118
60024cc8
MT
119 {% if lang == "de" %}
120 <p>
121 IPFire ist freie Software, welche von einer offenen
122 Community tagtäglich verbessert wird.
123 </p>
124 {% else %}
125 <p>
126 IPFire is free software and developed by an open community,
127 that makes IPFire better every single day.
128 </p>
129 {% end %}
130 </div>
131 </div>
132 </div>
940227cb 133
60024cc8
MT
134 <div class="span3">
135 <img src="{{ static_url("images/tux/ipfire_tux_256x256.png") }}" alt="IPFire Logo" />
940227cb 136
60024cc8
MT
137 {{ modules.SidebarRelease() }}
138 </div>
139 </div>
140
141 <hr>
81675874 142
60024cc8
MT
143 {% for item in latest_news %}
144 {{ modules.NewsItem(item, announcement=True) }}
145 {% end %}
bb3da2b5
MT
146
147 <div class="row">
148 <div class="span12">
149 <hr>
150 <a class="pull-right" href="/news">
151 <i class="icon-inbox"></i>
152 {{ _("Show older announcements") }}
153 </a>
154
155 <span class="label label-info"><i class="icon-globe icon-white"></i> {{ _("Planet news") }}</span>
156 {% for entry in latest_planets %}
157 {{ _("%(name)s talks about %(what)s.") % { "name" : entry.author.givenName, "what" : """<a href="http://planet.ipfire.org/post/%s">%s</a>""" % (entry.slug, entry.title) } }}
158 {% end %}
159 </div>
160 </div>
81675874 161{% end block %}