<a href="#" class="button button_shadow _link theme_default">
    <span class="button_inner _link_inner">
        <span class="button_label _link_label"></span>
    </span>
</a>
{#
	{% include '@partial-link-button' with {
		title: 'Button Text',
		url: '#',
		target: '',
		class: '',
		js: false,
		icon: '',
		aria: '',
		theme: 'accent',
		shadow: true
	} %}
#}
<a href="{{ url ?: '#' }}" class="button {{ shadow|default(true) ? 'button_shadow' : 'button_no_shadow' }} {{ class }}_link theme_{{ theme|default('default') }}{% if js %} js-{{ class|replace({ '_': '-'}) }}-link{% endif %}"{% if aria %} aria-label="{{ aria }}"{% endif %}{% if target %} target="{{ target }}"{% endif %}{% if target == '_blank' %} title="opens in new window"{% endif %}>
	<span class="button_inner {{ class }}_link_inner">
		<span class="button_label {{ class }}_link_label">{{ title }}</span>
		{% if icon %}
			<span class="button_icon {{ class }}_link_icon" aria-hidden="true">
				{{ icon(icon) }}
			</span>
		{% endif %}
	</span>
</a>

No notes defined.