{% include 'partials/header.html.twig' %}
{% if not hasError %}
{# Date navigation #}
{{ lang == 'pl' ? 'Święta – ' ~ dayResult.formattedDate : 'Holidays – ' ~ dayResult.formattedDate }}
{% endif %}
{# Content #}
{% if hasError %}
{% include 'partials/error.html.twig' %}
{% elseif dayResult.holidays|length == 0 %}
{{ lang == 'pl' ? 'Nie znaleziono świąt na ten dzień.' : 'No holidays found for this date.' }}
{% else %}
{# Holidays — all cards visible by default for SEO; JS enhances to carousel #}
{% for holiday in dayResult.holidays %}
{% include 'partials/holiday_card.html.twig' with {holiday: holiday} %}
{% endfor %}
{% if dayResult.holidays|length > 1 %}
{# Carousel controls — hidden by default, JS reveals them #}
{% for holiday in dayResult.holidays %}
{% endfor %}
{% endif %}
{% endif %}
{% if not hasError %}
{# Internal links: upcoming + browse by month #}
{% endif %}
{% endblock %}