{% extends "base.html" %} {% block content %}
{% for article in articles_page.object_list %}

{{ article.title }}

{% if article.category %} {{ article.category }} {% endif %} {% if article.tags %} {% for tag in article.tags %} {{ tag }} {% endfor %} {% endif %}
{% endfor %}
{% if articles_page.has_other_pages() %} {% endif %} {% endblock %}