{% extends "base.html" %} {% block title %}Home{% endblock %} {% block headerimg %}{{ DEFAULT_HEADER_BG }}{% endblock %} {% block content %}
{% for article in articles_page.object_list %}

{{ article.title }}

{{ article.summary }}
Read more →
{% for tag in article.tags %} {{ tag }} {% endfor %}
{% endfor %}
{% endblock %}