{% extends "base.html" %} {% set title = 'Feed' %} {% set description = 'Description' %} {% set href = 'blog/' %} {% set no_stats = False %} {% set template = 'archives' %} {% block content %} {% for article in articles %} {% if loop.index != 1 %}
{% endif %}
{{ article.content }}
{% endfor %} {% endblock %}