{% load wagtailcore_tags ocyan_thumbnail %}
{% if self.body %}

{{ self.header }}

{{ self.body|richtext }}
{% endif %}
{% with uuid=self.block.get_uuid %}
{% if not self.body %}

{{ self.header }}

{% endif %}
{% for tab in self.tabs %} {% with tab_id="block"|add:uuid|stringformat:"s"|add:"_tab"|add:forloop.counter|stringformat:"s" tab_button_id="block"|add:uuid|stringformat:"s"|add:"_tab_button"|add:forloop.counter|stringformat:"s" %}
{% lazy_responsive_image tab.image.file classes="image-bottom img-fluid" %}
{% if tab.button %} {{ tab.body|richtext }}
{% include "coyote/blocks/partials/button.html" with button=tab.button %}
{% else %} {{ tab.body|richtext }} {% endif %}
{% endwith %} {% endfor %}
{% endwith %}