{% if article.title %}
{% endif %}
{% if article.type == 'post' %}
- Posted on {{ article.date|locale_date }}
{% if article.tags|length > 0 %}
- Tagged with
{#
Fill in a comma-separated list of tags, ensuring that the last
tag isn't followed by a comma.
#}
{% for tag in article.tags|sort %}
{{ tag }}{% if loop.index != article.tags|count %}, {% endif %}
{% endfor %}
{% endif %}
{% if article.link %}
- ∞
{% endif %}
{% endif %}
{% if is_index and '' in article.content %}
{{ article.content.split('')[0]|safe }}
Continue reading
{% else %}
{{ article.content|safe }}
{% endif %}