{{ 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 'post_stats' in PLUGINS %} • {{ article.stats['read_mins'] }} min read {% endif %}
{% if article.tags %} {% for tag in article.tags %} {{ tag }} {% endfor %} {% endif %}