]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/planet-user.html
fireinfo: Some design fixes for ARM.
[people/shoehn/ipfire.org.git] / www / templates / planet-user.html
CommitLineData
940227cb 1{% extends "base-2.html" %}
d0d074e0 2
940227cb 3{% block title %}{{ _("IPFire Planet") }} - {{ author.cn }}{% end block %}
d0d074e0
MT
4
5{% block content %}
6 {% if entries %}
7 {% for entry in entries %}
940227cb 8 {{ modules.PlanetEntry(entry, short=True) }}
d0d074e0 9 {% end %}
940227cb
MT
10
11 <p class="right">
12 {% if offset - limit %}
13 <a href="?offset={{ offset - (2 * limit) }}">&lt;&lt; {{ _("See newer entries") }}</a>
14 &bull;
d0d074e0 15 {% end %}
940227cb
MT
16 <a href="?offset={{ offset }}">{{ _("See older entries") }} &gt;&gt;</a>
17 </p>
18 {% else %}
19 <p>{{ _("%s did no postings, yet.") % author.cn }}</p>
d0d074e0
MT
20 {% end %}
21{% end block %}
22
23{% block sidebar %}
940227cb
MT
24 <h4>{{ author.cn }}</h4>
25 <img src="{{ author.gravatar_icon(170) }}" alt="{{ author.uid }}" />
d0d074e0 26{% end %}