{% for item in module.content %}
	
	
	{% inline_text field="perex.text" value="" %}
	{% inline_rich_text field="perex.rich_text" value="" %}
	
	{% inline_text field="subtitle.text" value="" %}
	{% inline_rich_text field="text.text" value="" %}
	{% inline_text field="quote.text" value="" %}
	{% inline_text field="quote.author" value="" %}
	
	{% if item.image.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="image.caption" value="" %}
	{% for item2 in item.gallery.image %}
		{% if item2.src %}
			{% set sizeAttrs = 'width="" height=""' %}
			{% if item2.size_type == 'auto' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% elif item2.size_type == 'auto_custom_max' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% endif %}
			 {% set loadingAttr = item2.loading != 'disabled' ? 'loading=""' : '' %}
			<img src="" alt=""  >
		{% endif %}
	{% endfor %}
	{% inline_text field="button.text" value="" %}
	{% set href = item.button.link.url.href %}
	{% if item.button.link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.button.link.url.type is equalto "CALL_TO_ACTION"  %}
	    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
	  {% else %}
	    href=""
	  {% endif %}
	  {% if item.button.link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.button.link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% inline_text field="button.anchor" value="" %}
	
	{% if item.video.video.player_id %}
	  {% set max_width = item.video.video.size_type == 'auto_custom_max' ? item.video.video.max_width : item.video.video.width %}
	  {% set max_height = item.video.video.size_type == 'auto_custom_max' ? item.video.video.max_height : item.video.video.height %}
	  {% video_player "embed_player"
	    player_id=
	    type=
	    full_width=,
	    conversion_asset=
	    autoplay=
	    hidden_controls=
	    loop=
	    muted=
	  %}
	{% endif %}
	{% inline_text field="video.embed" value="" %}
	{% inline_text field="link.title" value="" %}
	{% inline_text field="link.text" value="" %}
	{% set href = item.link.link.url.href %}
	{% if item.link.link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.link.link.url.type is equalto "CALL_TO_ACTION"  %}
	    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
	  {% else %}
	    href=""
	  {% endif %}
	  {% if item.link.link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.link.link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% inline_text field="series.title" value="" %}
	{% if item.series.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.series.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.series.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.series.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% set href = item.series.link.url.href %}
	{% if item.series.link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.series.link.url.type is equalto "CALL_TO_ACTION"  %}
	    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
	  {% else %}
	    href=""
	  {% endif %}
	  {% if item.series.link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.series.link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% inline_text field="banner.title" value="" %}
	{% inline_text field="banner.text" value="" %}
	{% set href = item.banner.link.url.href %}
	{% if item.banner.link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.banner.link.url.type is equalto "CALL_TO_ACTION"  %}
	    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
	  {% else %}
	    href=""
	  {% endif %}
	  {% if item.banner.link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.banner.link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% if item.banner.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.banner.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.banner.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.banner.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
{% endfor %}