{% extends 'base.html' %} {% block title %}Blog - {{ SITENAME }}{% endblock %} {% block content %}

{{ BLOGTITLE }}

{% if articles %}
{% for article in articles %}
{% include '_includes/article.html' %}
{% endfor %}
{% include '_includes/blog_archive_minipage.html' %}
{% endif %} {% endblock %}