{% for item in module.plan.item %}
	{% inline_text field="plan_name" value="" %}
	{% inline_text field="summary" value="" %}
	{% inline_text field="button_text" value="" %}
	{% set href = item.button_link.url.href %}
	{% if item.button_link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% elif item.button_link.url.type is equalto "PHONE_NUMBER" %}
	  {% set href = "tel:" + href %}
	{% endif %}
	<a
	  {% if item.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 %}
	    
	  {% endif %}

	  >
	  Link text
	</a>
	{% inline_text field="note" value="" %}
{% endfor %}