aboutsummaryrefslogtreecommitdiffstats
path: root/sleepmap-theme/templates/article_infos.html
blob: 4185232a355b1dd429f67498ef64deef745d2fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<footer class="post-info">
  <p>Published on </p>
        <abbr class="published" title="{{ article.date.isoformat() }}">
                {{ article.locale_date }}
        </abbr>

        {% if article.author %}
        <p> by</p>
        <address class="vcard author">
          <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
        </address>
        {% endif %}
        <p>in the category</p> <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
    {% include 'translations.html' %}
</footer><!-- /.post-info -->