{% set href = module.top_btn.right_btn.url.href %}
{% if module.top_btn.right_btn.url.type is equalto "EMAIL_ADDRESS" %}
	{% set href = "mailto:" + href %}
{% endif %}
<a href=""
	{% if module.top_btn.right_btn.open_in_new_tab %}target="_blank"{% endif %}
	{% if module.top_btn.right_btn.rel %}rel=""{% endif %}
	>
	Link text
</a>
{% set href = module.top_btn.left_btn.url.href %}


{% if module.logo_image.src %}
	{% set sizeAttrs = 'width="" height=""' %}
	{% if module.logo_image.size_type == 'auto' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% elif module.logo_image.size_type == 'auto_custom_max' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% endif %}
	 {% set loadingAttr = module.logo_image.loading != 'disabled' ? 'loading=""' : '' %}
	<img src="" alt=""  >
{% endif %}
{% if module.top_btn.left_btn.url.type is equalto "EMAIL_ADDRESS" %}
	{% set href = "mailto:" + href %}
{% endif %}
<a href=""
	{% if module.top_btn.left_btn.open_in_new_tab %}target="_blank"{% endif %}
	{% if module.top_btn.left_btn.rel %}rel=""{% endif %}
	>
	Link text
</a>