{% for item in module.portfolio_card %}
	{% if item.portfolio_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.portfolio_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.portfolio_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.portfolio_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="portfolio_title" value="" %}
	{% inline_rich_text field="portfolio_description" value="" %}
	
	{% if item.boolean_field %}
		<!-- HTML to show when checked -->
	{% endif %}
{% endfor %}