aboutsummaryrefslogtreecommitdiffstats
path: root/SoMA/templates/article_infos.html
blob: d5c28c63cce454f71633fcbf53f56f84a94c2f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="post-info">
	<ul>
	{% if article.author %}
        <li class="vcard author">
                 by&nbsp;<a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
        </li>
        {% endif %}
        <li class="published" title="{{ article.date.isoformat() }}">
          on&nbsp;{{ article.locale_date }}
        </li>

	</ul>
{% include 'taglist.html' %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
</div><!-- /.post-info -->