This repository has been archived on 2022-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
blog.old/theme/my_theme/templates/article_infos.html

17 lines
760 B
HTML

<footer class="post-info">
<span>{{ article.locale_date }}</span>
{% if article.author and DISPLAY_AUTHOR_ON_POSTINFO %}
<span>| by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a></span>
{% endif %}
{% if DISPLAY_CATEGORIES_ON_POSTINFO %}
<span>| in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></span>
{% endif %}
{% include 'taglist.html' %}
{% if article.hundreddaystooffload %}
<span>| Day <strong>{{ article.hundreddaystooffload }}</strong> of #100DaysToOffload</span>
{% endif %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
</footer><!-- /.post-info -->