{% extends '@root/layouts/0001/pages/home.twig' %}
{% block page %}
	<section class="section first-section home" id="home">
		<h1>{{ data.page.name }}</h1>
		<div id="myCarousel" class="carousel slide{{ (data.slides|length < 2) or (site.slideshow_youtube_id) ? ' hide-arrows' }}">
			{% if data.slideshow_active %}
				{{ block('slideshow') }}
			{% endif %}
		</div>
		{% if site.highlights_top_active %}
			<div class="content">
				{{ block('highlights') }}
			</div>
		{% endif %}
	</section>
{% endblock %}