]> git.ipfire.org Git - ipfire.org.git/blob - templates/news.html
Make all absolute links use https:// instead of http://
[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 <p>
13 On these pages, you will find all the news announcements
14 that have been released.
15 </p>
16 <p>
17 Use the navigation bar on the bottom to jump to
18 a certain year.
19 </p>
20 </div>
21
22 <div class="col-lg-3 col-md-3">
23 <h4>{{ _("Stay up to date") }}</h4>
24
25 <p>
26 You can get the latest IPFire news directly to
27 your mailbox by subscribing to the
28 <a href="https://lists.ipfire.org/mailman/listinfo/ipfire-announce">ipfire-announce</a>
29 mailing list.
30 </p>
31 <p>
32 There is also an <a href="/news.rss">RSS feed</a> available.
33 </p>
34 </div>
35
36 <div class="col-lg-3 col-md-3">
37 <h4>{{ _("IPFire Planet") }}</h4>
38
39 <p>
40 The <em>IPFire planet</em> is the blog of the IPFire developers.
41 </p>
42 <p>
43 They write about intesting stuff all around the project.
44 </p>
45 </div>
46 </div>
47
48 <hr>
49
50 <div class="row">
51 <div class="col-lg-6 col-md-6 col-lg-offset-3">
52 <h3>{{ _("Latest news") }}</h3>
53 {% module NewsTable(news) %}
54 </div>
55 </div>
56
57 <hr>
58
59 {% module NewsYearNavigation() %}
60 {% end block %}