{% extends "base_site.html" %} {% block title %}All Articles{% endblock %} {% block content %}

All Articles

{% if object_list %} {% for article in object_list %}
{{ article.headline }}
{% endfor %} {% else %}

No articles were found.

{% endif %} {% endblock %}