]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/planet-main.html
Translate (and extend) some pages.
[people/shoehn/ipfire.org.git] / www / templates / planet-main.html
CommitLineData
940227cb 1{% extends "base-2.html" %}
d0d074e0
MT
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>
7bc2790a 11 Der <strong>IPFire Planet</strong> ist eine Plattform für alle
d0d074e0
MT
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>
bcc3ed4d 17 Um den Aufwand für die Entwickler in Maßen zu halten sind
d0d074e0
MT
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" />
940227cb 28 <!--
d0d074e0
MT
29 <p>
30 {{ _("Last issues") }}:
31 <ul>
32 {% for entry in entries %}
33 <li>
940227cb
MT
34 <a href="/post/{{ entry.slug }}">{{ entry.title }}</a>
35 {{ _("by") }}
36 <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
d0d074e0
MT
37 </li>
38 {% end %}
39 </ul>
40 </p>
940227cb 41 -->
d0d074e0 42 </div>
27066195
MT
43
44 <div class="line"></div>
45
d0d074e0 46 {% for entry in entries %}
940227cb 47 {{ modules.PlanetEntry(entry, short=True) }}
d0d074e0 48 {% end %}
940227cb
MT
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>
d0d074e0
MT
57{% end block %}
58
59{% block sidebar %}
60 <h4>{{ _("People on the planet") }}</h4>
27066195 61 <ul class="list">
d0d074e0
MT
62 {% for author in authors %}
63 <li>
940227cb 64 <a href="/user/{{ author.uid }}">{{ author.cn }}</a>
d0d074e0
MT
65 </li>
66 {% end %}
67 </ul>
68{% end %}