]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/news-author.html
Rewrite geo load balancing.
[people/shoehn/ipfire.org.git] / templates / news-author.html
CommitLineData
60024cc8 1{% extends "planet-user.html" %}
940227cb
MT
2
3{% block title %}{{ author.cn }}{% end block %}
4
60024cc8
MT
5{% block bodyA %}
6 <div class="page-header">
7 <h1>{{ _("%s's announcements") % author.cn }}</h1>
8 </div>
940227cb 9
60024cc8 10 <div class="row">
2d4053d7 11 <div class="col-lg-9 col-md-9">
60024cc8
MT
12 {% if lang == "de" %}
13 XXX GERMAN TEXT MISSING
14 {% else %}
15 <p>
16 This is a list of all announcements made by {{ author.cn }}
17 in reverse chronological order.
18 </p>
19 {% end %}
940227cb 20
60024cc8
MT
21 <table class="table table-striped table-bordered">
22 <tbody>
23 {% for news in latest_news %}
24 <tr>
25 <td>
26 <a href="/news/{{ news.slug }}">{{ news.title }}</a>
27 </td>
28 <td>
29 {{ locale.format_date(news.date, full_format=True) }}
30 </td>
31 </tr>
32 {% end %}
33 </tbody>
34 </table>
35 </div>
36 </div>
37{% end block %}