]> git.ipfire.org Git - ipfire.org.git/blob - templates/planet-main.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / planet-main.html
1 {% extends "base-2.html" %}
2
3 {% block title %}{{ _("IPFire Planet") }}{% end block %}
4
5 {% block bodyA %}
6 <div class="page-header">
7 <h1>{{ _("IPFire Planet") }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="span9">
12 {% if lang == "de" %}
13 <p>
14 Der <strong>IPFire Planet</strong> ist eine Plattform für alle
15 Personen, die in das Projekt involviert sind um mit der
16 Community in Kontakt zu bleiben und sie über neue Entwicklungen
17 zu informieren.
18 </p>
19 <p>
20 Um den Aufwand für die Entwickler in Maßen zu halten sind
21 alle Einträge nur auf Englisch verfügbar.
22 </p>
23 {% else %}
24 <p>
25 The <strong>IPFire Planet</strong> is a place for the people
26 who are involved in the project to tell the community about
27 new progress in the development or make some minor announcements.
28 </p>
29 {% end %}
30
31 <hr>
32 </div>
33 </div>
34
35 {% for entry in entries %}
36 {{ modules.PlanetEntry(entry) }}
37 {% end %}
38
39 <div class="row">
40 <div class="span9">
41 <ul class="pager">
42 <li class="previous">
43 <a href="?offset={{ offset }}">&larr; {{ _("Older posts") }}</a>
44 </li>
45 {% if offset - limit %}
46 <li class="next">
47 <a href="?offset={{ offset - (2 * limit) }}">{{ _("Newer posts") }} &rarr;</a>
48 </li>
49 {% end %}
50 </ul>
51 </div>
52 </div>
53 {% end block %}
54
55 {% block bodyB %}
56 <div class="row">
57 <div class="span3">
58 <h3>{{ _("Subscribe") }}</h3>
59
60 {% if lang == "de" %}
61 XXX GERMAN TEXT MISSING
62 {% else %}
63 <p>
64 Click on the button below to subscribe to the IPFire planet feed.
65 Add it to you favourite news reader and you will see new
66 posts immediately.
67 </p>
68 {% end %}
69
70 <p style="text-align: center;">
71 <a class="btn" href="http://planet.ipfire.org/rss">
72 <i class="icon-globe"></i> {{ _("Feed") }}
73 </a>
74 </p>
75
76 <hr>
77 </div>
78 </div>
79
80 <div class="row">
81 <div class="span3">
82 <h4>{{ _("People on the IPFire planet") }}</h4>
83 <ul>
84 {% for author in authors %}
85 <li>
86 <a href="/user/{{ author.uid }}">{{ author.cn }}</a>
87 </li>
88 {% end %}
89 </ul>
90 </div>
91 </div>
92 {% end %}