{% extends "base.html" %} {% block body %} {% for article in articles %}

{{ article.title }}

Written by {{ article.authors|authors_list(authors_mod) }}, {{ article.date }}

{{ article.content|markdown }}
{% if article.comments_enabled and config_mod['general.url'] and config_mod['social.disqus_id'] %}
Comments
blog comments powered by Disqus {% endif %}
{% endfor %} {% endblock %}