]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/news.html
Donation page responsivness
[people/shoehn/ipfire.org.git] / templates / news.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("News") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ _("What is new on the IPFire project?") }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="col-lg-6 col-md-6">
12 {% if lang == "de" %}
13 <p>
14 Auf diesen Seiten findest du alle Ankündigungen,
15 die je veröffentlicht wurden.
16 </p>
17 <p>
18 Nutze die Navigationsleiste am unteren Ende,
19 um zu einem bestimmten Jahr zu springen.
20 </p>
21 {% else %}
22 <p>
23 On these pages, you will find all the news announcements
24 that have been released.
25 </p>
26 <p>
27 Use the navigation bar on the bottom to jump to
28 a certain year.
29 </p>
30 {% end %}
31 </div>
32
33 <div class="col-lg-3 col-md-3">
34 <h4>{{ _("Stay up to date") }}</h4>
35
36 {% if lang == "de" %}
37 <p>
38 Du kannst dir alle Ankündigungen direkt in
39 dein Emailpostfach senden lassen.
40 Abboniere dazu einfach die
41 <a href="http://lists.ipfire.org/mailman/listinfo/ipfire-announce">ipfire-announce</a>
42 Mailingliste.
43 </p>
44 <p>
45 Ebenso gibt es einen <a href="/news.rss">RSS-Feed</a>.
46 </p>
47 {% else %}
48 <p>
49 You can get the latest IPFire news directly to
50 your mailbox by subscribing to the
51 <a href="http://lists.ipfire.org/mailman/listinfo/ipfire-announce">ipfire-announce</a>
52 mailing list.
53 </p>
54 <p>
55 There is also an <a href="/news.rss">RSS feed</a> available.
56 </p>
57 {% end %}
58 </div>
59
60 <div class="col-lg-3 col-md-3">
61 <h4>{{ _("IPFire Planet") }}</h4>
62
63 {% if lang == "de" %}
64 <p>
65 Der <em>IPFire Planet</em> ist ein Blog der Entwickler.
66 </p>
67 <p>
68 Dort schreiben sie über interessante Dinge rund um das Projekt.
69 </p>
70 {% else %}
71 <p>
72 The <em>IPFire planet</em> is the blog of the IPFire developers.
73 </p>
74 <p>
75 They write about intesting stuff all around the project.
76 </p>
77 {% end %}
78 </div>
79 </div>
80
81 <hr>
82
83 <div class="row">
84 <div class="col-lg-6 col-md-6 col-lg-offset-3">
85 <h3>{{ _("Latest news") }}</h3>
86 {% module NewsTable(news) %}
87 </div>
88 </div>
89
90 <hr>
91
92 {% module NewsYearNavigation() %}
93 {% end block %}