]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/planet/user.html
Show SSL protocol (and possibly cipher) in page footer
[people/shoehn/ipfire.org.git] / templates / planet / user.html
CommitLineData
d88b8f41 1{% extends "../base.html" %}
55b162d6 2
66862195 3{% block title %}{{ _("IPFire Planet") }} - {{ author.name }}{% end block %}
55b162d6
MT
4
5{% block body %}
6 <div class="row">
00b02c49 7 <div class="col-lg-9 col-md-9">
55b162d6
MT
8 {% block bodyA %}
9 <div class="page-header">
66862195 10 <h1>{{ author.name }}'s posts</h1>
55b162d6
MT
11 </div>
12
13 {% if entries %}
14 {% for entry in entries %}
15 {% module PlanetEntry(entry, show_avatar=False) %}
16 {% end %}
17
18 <div class="row">
00b02c49 19 <div class="col-lg-9 col-md-9">
55b162d6
MT
20 <ul class="pager">
21 <li class="previous">
22 <a href="?offset={{ offset }}">&larr; {{ _("Older posts") }}</a>
23 </li>
24 {% if offset - limit %}
25 <li class="next">
26 <a href="?offset={{ offset - (2 * limit) }}">{{ _("Newer posts") }} &rarr;</a>
27 </li>
28 {% end %}
29 </ul>
30 </div>
31 </div>
32 {% else %}
66862195 33 <p>{{ _("%s did not write any posts, yet.") % author.name }}</p>
55b162d6
MT
34 {% end %}
35 {% end block %}
36 </div>
37
00b02c49 38 <div class="col-lg-3 col-md-3">
d88b8f41 39 {% module PlanetAuthorBox(entry.author) %}
55b162d6
MT
40 </div>
41 </div>
42{% end block %}