{% extends 'base.html.twig' %} {% block title %}{{ 'collect.title'|trans }}{% endblock %} {% block footer %}{% endblock %} {% block styles %} {{ parent() }} {{ encore_entry_link_tags('collect') }} {% endblock %} {% block body %}

{{ 'collect.albums'|trans }}

{{ 'collect.activeCount'|trans({'%count%': stats.active}) }}

{% if collections is empty %}

{{ 'collect.emptySimple'|trans }}

{% else %}
{% for c in collections %} {% set cover = null %} {% for f in c.files %} {% if cover is null and f.status != 'deleted' and f.mimeType starts with 'image/' %} {% set cover = f %} {% endif %} {% endfor %} {% endfor %}
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('collect') }} {% endblock %}