]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/modules/planet-entry.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / www / templates / modules / planet-entry.html
1 <div class="row">
2 <div class="span9">
3 {% if show_avatar %}
4 <a class="pull-right" href="/user/{{ entry.author.uid }}">
5 <img class="img-polaroid" src="{{ entry.author.gravatar_icon(96) }}" alt="{{ entry.author.cn }}" />
6 </a>
7 {% end %}
8
9 <h2>
10 <a href="/post/{{ entry.slug }}">{{ entry.title }}</a>
11 </h2>
12
13 {{ entry.text }}
14
15 <p class="pull-right" style="clear: both;">
16 {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
17 {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
18 </p>
19 </div>
20 </div>
21
22 <hr>