{{ article.title }}
{% if not SHOW_POST_AUTHOR %} {% set auth_str = '' %} {% else %} {% set auth_str = [] %} {% for auth in article.authors %} {{ auth_str.append('%s'|format(SITEURL, auth.url, auth)|safe) or ''}} {% else %} {{ auth_str.append('%s'|format(SITEURL, article.author.url, article.author)|safe) or ''}} {% endfor %} {% set auth_str = ' by ' ~ auth_str|join(', ') %} {% endif %} {{ _('Posted%(auth_str)s on %(when)s in %(category)s', auth_str=auth_str, when=article.locale_date, category='%s'|format(SITEURL, article.category.url, article.category)|safe) }} {% if article.tags and not HOME_HIDE_TAGS %} • {{ _('Tagged with') }} {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %} {% endif %} {% if 'post_stats' in PLUGINS %} • {{ article.stats['read_mins'] }} min read {% endif %}
{{ _('Continue reading') }} {% endif %} {% else %} {{ article.content }} {% endif %}
{% endif %}