]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/news.html
fireinfo: Some design fixes for ARM.
[ipfire.org.git] / www / templates / news.html
CommitLineData
940227cb
MT
1{% extends "base-1.html" %}
2
3{% block title %}News{% end block %}
81675874 4
5{% block content %}
940227cb
MT
6 <h3>What is new on the IPFire project?</h3>
7
8 <!-- XXX fill in some nice illustration -->
9
10 <p>
11 At this place you will know about the most important announces.
12 For development information and the little beans there is the
13 <a href="http://planet.ipfire.org">IPFire Planet</a>.
14 </p>
15
16 <p>
17 To get latest news, there is the a
18 <a class="feed" href="/news.rss"> RSS feed</a>.
19 </p>
20
21 <br class="clear" />
22
23 {% for item in news %}
81675874 24 {{ modules.NewsItem(item) }}
25 {% end %}
940227cb
MT
26
27 <p class="links">
28 {% if offset - limit %}
29 <a href="?offset={{ offset - (2 * limit) }}">&lt;&lt; {{ _("See newer news entries") }}</a>
30 &bull;
31 {% end %}
32 <a href="?offset={{ offset }}">{{ _("See older news entries") }} &gt;&gt;</a>
33 </p>
81675874 34{% end block %}