{% load cotton %}

Process List Component

{% for variant in variants %}

{{ variant.title }}

{% for item in variant.items %} {% if item.content %}

{{ item.content }}

{% endif %} {% if item.list_items %}
    {% for list_item in item.list_items %}
  • {{ list_item }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endfor %}