{% 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 config_mod['social.twitter_id'] and config_mod['general.url'] %} {% endif %}
    {% if comments_enabled and config_mod['general.url'] and config_mod['social.disqus_id'] %}
    blog comments powered by Disqus {% endif %}
  • {% endfor %} {% endblock %}