{% for item in module.profile_card %}
	{% if item.photo.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.photo.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.photo.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.photo.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="full_name" value="" %}
	{% inline_text field="title" value="" %}
	{% if item.show_short_bio %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="short_bio" value="" %}
	{% inline_rich_text field="rich_text_bio" value="" %}
	{% if item.card_link %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% set href = item.link.url.href %}
	{% if item.link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.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.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% if item.card_pop %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_rich_text field="pop_up_content" value="" %}
	{% if item.social.show_email %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.email" value="" %}
	{% if item.social.show_phone %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.phone_number" value="" %}
	{% if item.social.show_social %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.social.show_linkedin %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.linkedin_url" value="" %}
	{% if item.social.show_facebook %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.facebook_url" value="" %}
	{% if item.social.show_twitter %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.twitter_url" value="" %}
	{% if item.social.show_instagram %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.instagram_url" value="" %}
	{% if item.social.show_youtube %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.youtube_url" value="" %}
	{% if item.social.show_medium %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="social.medium_url" value="" %}
{% endfor %}