]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/planet-main.html
af9d02b02b30f45d50a4a5c7ff4aac027faa3335
[people/shoehn/ipfire.org.git] / www / templates / planet-main.html
1 {% extends "base-2.html" %}
2
3 {% block title %}{{ _("IPFire Planet") }}{% end block %}
4
5 {% block content %}
6 <div class="post">
7 <h3>{{ _("IPFire Planet") }}</h3>
8
9 {% if lang == "de" %}
10 <p>
11 Der <strong>IPFire Planet</strong> ist eine Platform für alle
12 Personen, die in das Projekt involviert sind um mit der
13 Community in Kontakt zu bleiben und sie über neue Entwicklungen
14 zu informieren.
15 </p>
16 <p>
17 Um den Aufwand für die Entwickler in Maßen zu halten sind leider
18 alle Einträge nur auf Englisch verfügbar.
19 </p>
20 {% else %}
21 <p>
22 The <strong>IPFire Planet</strong> is a place for the people
23 who are involved in the project to tell the community about
24 new progress in the development or make some minor announcements.
25 </p>
26 {% end %}
27 <br class="clear" />
28 <!--
29 <p>
30 {{ _("Last issues") }}:
31 <ul>
32 {% for entry in entries %}
33 <li>
34 <a href="/post/{{ entry.slug }}">{{ entry.title }}</a>
35 {{ _("by") }}
36 <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
37 </li>
38 {% end %}
39 </ul>
40 </p>
41 -->
42 </div>
43
44 <div class="line"></div>
45
46 {% for entry in entries %}
47 {{ modules.PlanetEntry(entry, short=True) }}
48 {% end %}
49
50 <p class="right">
51 {% if offset - limit %}
52 <a href="?offset={{ offset - (2 * limit) }}">&lt;&lt; {{ _("See newer entries") }}</a>
53 &bull;
54 {% end %}
55 <a href="?offset={{ offset }}">{{ _("See older entries") }} &gt;&gt;</a>
56 </p>
57 {% end block %}
58
59 {% block sidebar %}
60 <h4>{{ _("People on the planet") }}</h4>
61 <ul class="list">
62 {% for author in authors %}
63 <li>
64 <a href="/user/{{ author.uid }}">{{ author.cn }}</a>
65 </li>
66 {% end %}
67 </ul>
68 {% end %}