{% extends 'base.html' %} {% block title %} - All sets{% endblock %} {% block main %} {% if collection | length %}
Search
Filter
Sort
{% for item in collection %}
{% with index=loop.index0 %} {% include 'set/card.html' %} {% endwith %}
{% endfor %}
{% else %} {% include 'set/empty.html' %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}