{% for item in module.column_group %}
	{% inline_text field="title" value="" %}
	{% inline_rich_text field="subtitle" value="" %}
	{% inline_rich_text field="content" value="" %}
	{% inline_text field="specific_req_title" value="" %}
	{% for item2 in item.requirements_group %}
		{% inline_text field="req_title" value="" %}
	{% endfor %}
	{% if item.want_teams_and_condition_text %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_rich_text field="teams_and_condition_text" value="" %}
	{% if item.hide_button %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% 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 %}
	{% 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 %}
	    href=""
	  {% endif %}
	  {% if item.button_link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.button_link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
{% endfor %}