{% extends "base.html" %} {% block content %} {% for block in doc.blocks %} {% if block.type == 'image' %} {% include "partials/block-image-cover.html" %} {% endif %} {% endfor %} categories {% for cat in categories.keys() %} {{ cat }} {% endfor %} set {% for set in sets %} {{ set.title }} {% endfor %} {% for cat, products in categories.items() %} {{ cat }} {% for product in products %} {% set block = product.blocks[0] %} {% include "partials/grid-product.html" %} {% endfor %} {% endfor %} {% include "partials/footer.html" %} {% endblock %}