]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/modules/planet-entry.html
Import of new website.
[people/shoehn/ipfire.org.git] / www / templates / modules / planet-entry.html
CommitLineData
d0d074e0 1<div class="post">
940227cb
MT
2 <h2 class="title"><a href="/post/{{ entry.slug }}">{{ entry.title }}</a></h2>
3 <p class="meta">
4 {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
5 {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
6 <!-- &bull; <a href="/post/{{ entry.slug }}">{{ _("Full article") }}</a> -->
7 </p>
8 <div class="entry">
9 <img class="floatTR" src="{{ entry.author.gravatar_icon(64) }}"
10 alt="{{ entry.author.cn }}" />
11
12 {% if short %}
13 {{ entry.abstract }}
14 {% else %}
15 {{ entry.text }}
16 {% end %}
17
18 <p class="links">
19 {% if short %}
20 <a href="/post/{{ entry.slug }}">{{ _("Read more") }}</a>
21 &bull;
22 {% end %}
23 {{ _("Last updated on") }} {{ locale.format_date(entry.updated) }}.
24 </p>
d0d074e0
MT
25 </div>
26</div>