<!-- Cookie Notice -->
<div class="cookie-notice" id="cookie-notice-1" data-js-cookie-notice role="dialog" aria-modal="false" aria-labelledby="cookie-notice-1__title" aria-describedby="cookie-notice-1__description">
    <div class="cookie-notice__inner">
        <div class="cookie-notice__header">
            <h2 class="cookie-notice__title" id="cookie-notice-1__title">Cookie Notice</h2>
        </div>
        <div class="cookie-notice__body">
            <div class="cookie-notice__description" id="cookie-notice-1__description">
                <p>Our website uses <em>cookies</em> to understand how you navigate our content and to give you the <strong>best browsing experience</strong>. View our <a href="#">privacy policy</a>.</p>
            </div>
        </div>
        <div class="cookie-notice__footer">

            <button class="button-bordered
 				cookie-notice__button" id="cookie-notice-1__button--accept" data-js-cookie-notice-button="accept" aria-labelledby="cookie-notice-1__button--accept cookie-notice-1__title">
                <span class="button-bordered__inner"> <span class="button-bordered__label">Accept All</span>
                </span>
            </button>

            <button class="button-bordered
 				cookie-notice__button" id="cookie-notice-1__button--reject" data-js-cookie-notice-button="reject" aria-labelledby="cookie-notice-1__button--reject cookie-notice-1__title">
                <span class="button-bordered__inner"> <span class="button-bordered__label">Reject All</span>
                </span>
            </button>
        </div>
    </div>
</div>
<!-- END: Cookie Notice -->
{#
	{% include '@component-cookie-notice' with {
		title: 'Title',
		description: 'Description.'
	} %}
#}

{% set id = uniqid('cookie-notice') %}

<!-- Cookie Notice -->
<div
	class="cookie-notice"
	id="{{ id }}"
	data-js-cookie-notice
	role="dialog"
	aria-modal="false"
	aria-labelledby="{{ id ~ '__title' }}"
	aria-describedby="{{ id ~ '__description' }}"
>
	<div class="cookie-notice__inner">
		<div class="cookie-notice__header">
			<h2 class="cookie-notice__title" id="{{ id ~ '__title' }}">
				{{- title -}}
			</h2>
		</div>
		<div class="cookie-notice__body">
			<div class="cookie-notice__description" id="{{ id ~ '__description' }}">
				{{ description }}
			</div>
		</div>
		<div class="cookie-notice__footer">
			{% for button in ['accept', 'reject'] %}
				{% include '@partial-button' with {
					classes: {
						base: 'button-bordered',
						utility: 'cookie-notice__button'
					},
					id: id ~ '__button--' ~ button,
					attributes: {
						'data-js-cookie-notice-button': button,
						'aria-labelledby': id ~ '__button--' ~ button ~ ' ' ~ id ~ '__title'
					},
					title: button == 'accept' ? 'Accept All' : 'Reject All',
				} only %}
			{% endfor %}
		</div>
	</div>
</div>
<!-- END: Cookie Notice -->

No notes defined.