]> git.ipfire.org Git - ipfire.org.git/blob - templates/planet/index.html
planet: Add proper full-text search.
[ipfire.org.git] / templates / planet / index.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("IPFire Planet") }}{% end block %}
4
5 {% block body %}
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>
12
13 {% module PlanetSearchBox() %}
14
15 <hr class="separator">
16
17 {% for entry in entries %}
18 {% module PlanetEntry(entry) %}
19 {% end %}
20
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>
31 {% end block %}