first version of the new website
[markerbeacon.git] / themes / markerbeacon / templates / article_infos.html
1 <footer class="post-info">
2         <abbr class="published" title="{{ article.date.isoformat() }}">
3                 Published: {{ article.locale_date }}
4         </abbr>
5         {% if article.modified %}
6                 <br />
7         <abbr class="modified" title="{{ article.modified.isoformat() }}">
8                 Updated: {{ article.locale_modified }}
9         </abbr>
10         {% endif %}
11
12         {% if article.authors %}
13         <address class="vcard author">
14                 By {% for author in article.authors %}
15                         <a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
16                 {% endfor %}
17         </address>
18         {% endif %}
19 <p>In <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>.</p>
20 {% include 'taglist.html' %}
21 {% import 'translations.html' as translations with context %}
22 {{ translations.translations_for(article) }}
23 </footer><!-- /.post-info -->