{% extends 'base.html.twig' %} {% block title %}{{ 'stories.index.title'|trans }}{% endblock %} {% block meta_description %}{{ 'stories.index.meta_description'|trans }}{% endblock %} {% from '_macros/image.html.twig' import picture %} {% block body %} {# Hero #}

{{ 'stories.index.heading'|trans }}

{{ 'stories.index.subtitle'|trans }}

{# Seasons #}
{% for season in seasons %}
{# Season header — book chapter opener #}
{{ 'stories.index.season'|trans({'%number%': season.number}) }}

{{ season.name }}

{{ season.stories|length }} {{ season.stories|length == 1 ? 'odcinek' : (season.stories|length < 5 ? 'odcinki' : 'odcinków') }}

{# Episode cards #}
{% else %}

{{ 'stories.index.empty'|trans }}

{% endfor %}
{% endblock %}