]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/news-item.html
RSS feed and minor improvements.
[people/shoehn/ipfire.org.git] / www / templates / news-item.html
1 {% extends "base-2.html" %}
2
3 {% block title %}{{ item.title }}{% end block %}
4
5 {% block content %}
6 <!-- <h2>{{ item.title }}</h2>
7 <div class="post_info">
8 {{ locale.format_date(item.date) }} {{ _("by") }}
9 <a href="/author/{{ item.author_id }}">{{ item.author }}</a>
10 </div>
11
12 {{ item.text }} -->
13
14 {{ modules.NewsItem(item, uncut=True) }}
15 {% end block %}
16
17 {% block sidebar %}
18 <h4>other options</h4>
19 <ul class="list">
20 <li><a href="/news">{{ _("Show all news") }}</a></li>
21 </ul>
22 {% end block %}