]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/planet-main.html
Create a global webapp database connection and create a config class.
[ipfire.org.git] / www / templates / planet-main.html
CommitLineData
d0d074e0
MT
1{% extends "base.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="#{{ entry.id }}">{{ entry.title }}</a>
35 {{ _("by") }} {{ entry.author.realname }}
36 </li>
37 {% end %}
38 </ul>
39 </p>
40 </div>
41
42 {% for entry in entries %}
43 {{ modules.PlanetEntry(entry) }}
44 {% end %}
45{% end block %}
46
47{% block sidebar %}
48 <h4>{{ _("People on the planet") }}</h4>
49 <ul>
50 {% for author in authors %}
51 <li>
52 <a href="/user/{{ author.name }}">{{ author.realname }}</a>
53 </li>
54 {% end %}
55 </ul>
56{% end %}