]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/planet/year.html
Show SSL protocol (and possibly cipher) in page footer
[people/shoehn/ipfire.org.git] / templates / planet / year.html
CommitLineData
cc3b928d
MT
1{% extends "base.html" %}
2
3{% block title %}{{ _("IPFire Planet") }}{% end block %}
4
5{% block subtitle %}
6 {{ _("Year %s") % year }}</p>
7{% end block %}
8
9{% block body %}
10 {% for month, entries in months %}
11 <h3>{{ format_month_name(month) }}</h3>
12
13 <table class="table planet-table">
14 {% for entry in entries %}
15 <tr>
16 <td class="date">
17 {{ locale.format_date(entry.published, shorter=True) }}
18 </td>
19 <td class="title">
20 <a href="/post/{{ entry.slug }}">{{ entry.title }}</a>
21 </td>
22 <td class="author">
86ddb638 23 <a href="/user/{{ entry.author.uid }}">{{ entry.author.name }}</a>
cc3b928d
MT
24 </td>
25 </tr>
26 {% end %}
27 </table>
28 {% end %}
29{% end block %}