Posted on
{% if article.author %}
by {% if AUTHORS_URL %} {{ article.author }}{% else %}{{ article.author}}{% endif %}
{% endif %}
{% if article.modified %}
Last updated
{% endif %}
{% if CATEGORY_URL %}
Category: {{ article.category }}
{% if TAG_URL and article.tags %}––{% endif %}
{% endif %}
{% if TAG_URL and article.tags %}
Tags:
{% for tag in article.tags %}
{{ tag }}{% if not loop.last %},{% endif %}
{% endfor %}