{% extends "base.html" %}
{% block content %}
    {% for item in items %}
        {% include "listitem.html" with item=item %}
    {% endfor %}
{% endblock %}