{% for item in module.brochure_group %}
	{% inline_text field="top_heading" value="" %}
	{% inline_text field="title" value="" %}
	{% inline_text field="description" value="" %}
	{% if item.cta.show_primary_button %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="cta.primary_button_text" value="" %}
	{% set href = item.cta.primary_button_link.url.href %}
	{% if item.cta.primary_button_link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% elif item.cta.primary_button_link.url.type is equalto "PHONE_NUMBER" %}
	  {% set href = "tel:" + href %}
	{% endif %}
	<a
	  {% if item.cta.primary_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.cta.primary_button_link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.cta.primary_button_link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% if item.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% if item.show_download_icon %}
		<!-- HTML to show when checked -->
	{% endif %}
{% endfor %}