]> git.somenet.org - somenet/www-somenet-org.git/blob - theme/templates/article_infos.html
content/ntp.md
[somenet/www-somenet-org.git] / theme / templates / article_infos.html
1 <div class="post-info">
2 {% if False %}
3     <abbr class="published" title="{{ article.date.isoformat() }}"><i class="icon-calendar"></i>&nbsp;{{ article.locale_date }}</abbr>
4 {% endif %}
5 {% if article.author %}
6     <a href="{{ SITEURL }}/{{ article.author.url }}"><i class="icon-user"></i>&nbsp;{{ article.author }}</a>
7 {% endif %}
8 {% if PDF_GENERATOR %}
9     <span class="label"><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a></span>
10 {% endif %}
11 {% include 'taglist.html' %}
12 {% if article.translations %}
13     <span class="label">Lang</span>
14     {% for translation in article.translations %}
15         <a href="{{ SITEURL }}/{{ translation.url }}"><i class="icon-edit"></i>{{ translation.lang }}</a>
16     {% endfor %}
17 {% endif %}
18 </div><br/>