
{% if module.content_module.image.src %}
	{% set sizeAttrs = 'width="" height=""' %}
	{% if module.content_module.image.size_type == 'auto' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% elif module.content_module.image.size_type == 'auto_custom_max' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% endif %}
	 {% set loadingAttr = module.content_module.image.loading != 'disabled' ? 'loading=""' : '' %}
	<img src="" alt=""  >
{% endif %}
{% inline_text field="content_module.small_title" value="" %}


{% inline_text field="content_module.title" value="" %}
{% inline_rich_text field="content_module.content" value="" %}
{% for item in module.content_module.button %}
	
	
	{% inline_text field="btn_text" value="" %}
	
	{% set href = item.anchor.link.url.href %}
	{% if item.anchor.link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.anchor.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.anchor.link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.anchor.link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% inline_text field="anchor.href" value="" %}
	
	{% inline_text field="anchor.add_url" value="" %}
	{% inline_text field="anchor.int_model_id" value="" %}
	{% inline_text field="anchor.ext_model_id" value="" %}
	{% inline_rich_text field="anchor.popup_content" value="" %}
	{% cta guid="" %}
	{% if item.override_button_style %}
		<!-- HTML to show when checked -->
	{% endif %}
	
	
	
	
	
	
	
	
	
	
	
	
{% endfor %}