{% load wagtailcore_tags wagtailimages_tags %} {% block content %}
{% if value.layout_style == 'vertical' %}
{% for card in value.cards %} {% endfor %}
{% elif value.layout_style == 'destaque_em_cima' %}
{% if value.cards %} {% with featured_card=value.cards.0 %} {% endwith %} {% endif %}
{% elif value.layout_style == 'centered' %}
{% for card in value.cards %} {% if forloop.first %} {% else %} {% endif %} {% endfor %}
{% elif value.layout_style == 'destaque' %} {% else %}
{% for card in value.cards %} {% endfor %}
{% endif %}
{% endblock %}