]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/planet/index.html
94dcabfb4d7927ebca81fa1cef541c4eaf95422b
[people/shoehn/ipfire.org.git] / templates / planet / index.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("IPFire Planet") }}{% end block %}
4
5 {% block body %}
6 <div class="ac">
7 <p class="lead">
8 The <strong>IPFire Planet</strong> is a place for the people
9 who are involved in the project to tell the community about
10 new progress in the development or make some minor announcements.
11 </p>
12
13 <p>
14 <a class="btn btn-primary btn-large" href="http://planet.ipfire.org/rss">
15 Subscribe to our RSS feed to stay up to date.
16 </a>
17 </p>
18 </div>
19
20 <hr class="separator">
21
22 {% for entry in entries %}
23 {% module PlanetEntry(entry) %}
24 {% end %}
25
26 <div class="row">
27 <div class="span9">
28 <ul class="pager">
29 <li class="previous">
30 <a href="?offset={{ offset }}">&larr; {{ _("Older posts") }}</a>
31 </li>
32 {% if offset - limit %}
33 <li class="next">
34 <a href="?offset={{ offset - (2 * limit) }}">{{ _("Newer posts") }} &rarr;</a>
35 </li>
36 {% end %}
37 </ul>
38 </div>
39 </div>
40 {% end block %}