]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/news-author.html
Import of new website.
[ipfire.org.git] / www / templates / news-author.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ author.cn }}{% end block %}
4
5 {% block content %}
6 <h2>{{ author.cn }}</h2>
7 <p>
8 Fill in some intesting things about the author...
9 </p>
10
11 <h3>{{ _("%s recently announced...") % author.cn }}</h3>
12 <ul class="news_author_latest_news">
13 {% for news in latest_news %}
14 <li>{{ modules.NewsLine(news) }}</li>
15 {% end %}
16 </ul>
17 {% end block %}
18