]> git.ipfire.org Git - ipfire.org.git/blame - templates/news.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / news.html
CommitLineData
940227cb
MT
1{% extends "base-1.html" %}
2
7771acea 3{% block title %}{{ _("News") }}{% end block %}
81675874 4
60024cc8
MT
5{% block body %}
6 <div class="page-header">
7 <h1>{{ _("What is new on the IPFire project?") }}</h1>
8 </div>
940227cb 9
7771acea
MT
10 <div class="row">
11 <div class="span6">
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="span3">
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>
940227cb 59
7771acea
MT
60 <div class="span3">
61 <h4>{{ _("IPFire Planet") }}</h4>
940227cb 62
7771acea
MT
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>
940227cb 82
60024cc8 83 <div class="row">
7771acea
MT
84 <div class="span6 offset3">
85 <h3>{{ _("Latest news") }}</h3>
86 {{ modules.NewsTable(news) }}
60024cc8
MT
87 </div>
88 </div>
7771acea
MT
89
90 <hr>
91
92 {{ modules.NewsYearNavigation() }}
81675874 93{% end block %}