]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/planet/index.html
Show SSL protocol (and possibly cipher) in page footer
[people/shoehn/ipfire.org.git] / templates / planet / index.html
CommitLineData
55b162d6
MT
1{% extends "base.html" %}
2
3{% block title %}{{ _("IPFire Planet") }}{% end block %}
4
5{% block body %}
cc3b928d
MT
6 <p class="lead ac">
7 The <strong>IPFire Planet</strong> is a place for the people
8 who are involved in the project to tell the community about
9 new progress in the development or make some minor announcements.
10 </p>
11 <br>
55b162d6 12
fa7e1a0a 13 {% module PlanetSearchBox() %}
55b162d6
MT
14
15 <hr class="separator">
16
17 {% for entry in entries %}
18 {% module PlanetEntry(entry) %}
19 {% end %}
20
cc3b928d
MT
21 <ul class="pager">
22 <li class="previous">
23 <a href="?offset={{ offset }}">&larr; {{ _("Older posts") }}</a>
24 </li>
25 {% if offset - limit %}
26 <li class="next">
27 <a href="?offset={{ offset - (2 * limit) }}">{{ _("Newer posts") }} &rarr;</a>
28 </li>
29 {% end %}
30 </ul>
55b162d6 31{% end block %}