 {% for item in module.columns %}
	{% if item.image_field.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image_field.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image_field.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image_field.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% for item2 in item.gallery_images %}
		{% if item2.gallery_image.src %}
			{% set sizeAttrs = 'width="" height=""' %}
			{% if item2.gallery_image.size_type == 'auto' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% elif item2.gallery_image.size_type == 'auto_custom_max' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% endif %}
			 {% set loadingAttr = item2.gallery_image.loading != 'disabled' ? 'loading=""' : '' %}
			<img src="" alt=""  >
		{% endif %}
	{% endfor %}
	{% inline_text field="person_name" value="" %}
	{% inline_text field="bio_title" value="" %}
	{% inline_rich_text field="bio_content" value="" %}
{% endfor %}