{% extends 'blog/base.html' %} {% load static %} {% block title %}Blog ∣ {{ block.super }}{% endblock title %} {% block main_section %}
{% if articles %} {% for article in articles %}

{{ article.title }}

{% if article.teaser %}
{{ article.teaser | safe }}
{% endif %}
{% endfor %} {% else %}

Empty 😣

Publish a first article and it will appear here.

{% endif %}
{% endblock main_section %}