<!-- Event Actions -->
<section class="event_actions" id="event_actions_1" aria-labelledby="event_actions_1_title">
    <div class="fs-row">
        <div class="fs-cell">
            <div class="event_actions_inner">
                <div class="event_actions_header">
                    <h2 class="event_actions_title" id="event_actions_1_title">
                        Event Actions
                    </h2>
                </div>
                <div class="event_actions_body">
                    <ul class="event_actions_list" aria-labelledby="event_actions_1_title">
                        <li class="event_action">

                            <a class="
		button_filled
					button_filled_large
				
	" href="#">
                                <span class="button_filled_inner">
                                    <span class="button_filled_label">
                                        Register
                                    </span>
                                </span>
                            </a>
                        </li>
                        <li class="event_action">

                            <a class="
		button_filled
					button_filled_large
				
	" href="#">
                                <span class="button_filled_inner">
                                    <span class="button_filled_label">
                                        Tickets
                                    </span>
                                </span>
                            </a>
                        </li>
                        <li class="event_action">

                            <a class="
		button_filled
					button_filled_large
				
	" href="#">
                                <span class="button_filled_inner">
                                    <span class="button_filled_label">
                                        Add to Calendar
                                    </span>
                                </span>
                            </a>
                        </li>
                        <li class="event_action">

                            <a class="
		button_filled
					button_filled_large
				
	" href="#">
                                <span class="button_filled_inner">
                                    <span class="button_filled_label">
                                        Add to Google
                                    </span>
                                </span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    </div>
</section>
<!-- END: Event Actions -->
{#
	{% include '@component-event-actions' with {
		items: [
			{
				title: 'Action Title',
				url: '#'
			}
		]
	} %}
#}

{% set id = uniqid('event_actions') %}

<!-- Event Actions -->
<section
	class="event_actions"
	id="{{ id }}"
	aria-labelledby="{{ id }}_title"
>
	<div class="fs-row">
		<div class="fs-cell">
			<div class="event_actions_inner">
				<div class="event_actions_header">
					<h2 class="event_actions_title" id="{{ id }}_title">
						Event Actions
					</h2>
				</div>
				<div class="event_actions_body">
					<ul class="event_actions_list" aria-labelledby="{{ id }}_title">
						{% for item in items %}
							<li class="event_action">
								{% include '@partial-link' with {
									classes: {
										base: 'button_filled',
										modifiers: [
											'large'
										]
									},
									id: null,
									title: item.title,
									url: item.url
								} %}
							</li>
						{% endfor %}
					</ul>
				</div>
			</div>
		</div>
	</div>
</section>
<!-- END: Event Actions -->

No notes defined.