]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/planet/hottest.html
Massive web site update
[people/shoehn/ipfire.org.git] / templates / planet / hottest.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Hottest posts") }}{% end block %}
4
5 {% block container %}
6 <div class="container page-header">
7 <h1>{{ _("The hottest posts of the last month") }}</h1>
8 </div>
9
10 <section class="container">
11 <dl>
12 {% for entry in entries %}
13 <dt>
14 <img class="img-responsive img-rounded pull-right" src="{{ entry.author.gravatar_icon(64) }}" alt="{{ entry.author.name }}" />
15 <h4><a href="/post/{{ entry.slug }}">{{ entry.title }}</a></h4>
16 </dt>
17 <dd>
18 {{ _("by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.name }}</a>,
19 {{ locale.format_date(entry.published, relative=True, shorter=True) }}
20 </dd>
21
22 <br>
23 {% end %}
24 </dl>
25 </section>
26 {% end block %}