Tabber in Tabber
{% if module.header %}
{% endif %}
{{ module.header }}
{% for item in module.add_tab_item %}
{% endfor %}
{{ item.title }}
{% for item in module.add_tab_item %}
{% endfor %}
{{ item.title }}
-
{% for item2 in item.inner_tabber_group %}
- {{ item2.tab_title }} {% endfor %}
{% for item2 in item.inner_tabber_group %}
{% if item2.content_type == "image" %}
{% endfor %}
{% if item2.image.src %}
{% set sizeAttrs = 'width="{{ item2.image.width }}" height="{{ item2.image.height }}"' %}
{% if item2.image.size_type == 'auto' %}
{% set sizeAttrs = 'style="max-width: 100%; height: auto;"' %}
{% elif item2.image.size_type == 'auto_custom_max' %}
{% set sizeAttrs = 'width="{{ item2.image.max_width }}" height="{{ item2.image.max_height }}" style="max-width: 100%; height: auto;"' %}
{% endif %}
{% set loadingAttr = item2.image.loading != 'disabled' ? 'loading="{{ item2.image.loading }}"' : '' %}
{% endif %}
{% if item2.image_caption %}
{% endif %}
{% if item2.content_type == "content" %}
{{ item2.image_caption }}
{% endif %}
{{ item2.content }}
{% endif %}
Comments
Post a Comment