]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/planet-main.html
Import of new website.
[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>
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" />
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
MT
42 </div>
43
44 {% for entry in entries %}
940227cb 45 {{ modules.PlanetEntry(entry, short=True) }}
d0d074e0 46 {% end %}
940227cb
MT
47
48 <p class="right">
49 {% if offset - limit %}
50 <a href="?offset={{ offset - (2 * limit) }}">&lt;&lt; {{ _("See newer entries") }}</a>
51 &bull;
52 {% end %}
53 <a href="?offset={{ offset }}">{{ _("See older entries") }} &gt;&gt;</a>
54 </p>
d0d074e0
MT
55{% end block %}
56
57{% block sidebar %}
58 <h4>{{ _("People on the planet") }}</h4>
59 <ul>
60 {% for author in authors %}
61 <li>
940227cb 62 <a href="/user/{{ author.uid }}">{{ author.cn }}</a>
d0d074e0
MT
63 </li>
64 {% end %}
65 </ul>
66{% end %}