]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/modules/news-item.html
Major update of the webapp.
[people/shoehn/ipfire.org.git] / templates / modules / news-item.html
1 <div class="row">
2 <div class="span12">
3 {% if show_heading %}
4 <h2>
5 {% if announcement %}
6 {{ _("Announcement") }}:
7 {% end %}
8 <a href="/news/{{ item.slug }}">{{ item.title }}</a>
9 </h2>
10 {% end %}
11
12 {% raw item.text %}
13 </div>
14 </div>
15 <div class="row">
16 <div class="span12">
17 <p class="pull-right">
18 <a href="/author/{{ item.author_id }}">{{ item.author }}</a> -
19 {{ locale.format_date(item.published, full_format=True) }}
20 </p>
21 </div>
22 </div>