]> git.ipfire.org Git - ipfire.org.git/blame - templates/news.html
Make all absolute links use https:// instead of http://
[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 10 <div class="row">
2d4053d7 11 <div class="col-lg-6 col-md-6">
e52b45b6
MT
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>
7771acea
MT
20 </div>
21
2d4053d7 22 <div class="col-lg-3 col-md-3">
7771acea
MT
23 <h4>{{ _("Stay up to date") }}</h4>
24
e52b45b6
MT
25 <p>
26 You can get the latest IPFire news directly to
27 your mailbox by subscribing to the
ba43a892 28 <a href="https://lists.ipfire.org/mailman/listinfo/ipfire-announce">ipfire-announce</a>
e52b45b6
MT
29 mailing list.
30 </p>
31 <p>
32 There is also an <a href="/news.rss">RSS feed</a> available.
33 </p>
7771acea 34 </div>
940227cb 35
2d4053d7 36 <div class="col-lg-3 col-md-3">
7771acea 37 <h4>{{ _("IPFire Planet") }}</h4>
940227cb 38
e52b45b6
MT
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>
7771acea
MT
45 </div>
46 </div>
47
48 <hr>
940227cb 49
60024cc8 50 <div class="row">
2d4053d7 51 <div class="col-lg-6 col-md-6 col-lg-offset-3">
7771acea 52 <h3>{{ _("Latest news") }}</h3>
6b6308b0 53 {% module NewsTable(news) %}
60024cc8
MT
54 </div>
55 </div>
7771acea
MT
56
57 <hr>
58
6b6308b0 59 {% module NewsYearNavigation() %}
81675874 60{% end block %}