{% extends 'layout.html.twig' %} {% set breadcrumb = buildBreadcrumb([{'route': 'app_collection_index', 'trans': 'menu.collections'}]) %} {% block title %} {{ renderTitle(breadcrumb) }} {% endblock %} {% block meta %} {% if context == 'user' %} {{ include('App/_partials/_meta.html.twig', { 'title': 'menu.collections_user'|trans({'%username%': app.request.get('username')}), 'description': 'menu.collections_user'|trans({'%username%': app.request.get('username')}) }) }} {% else %} {{ parent() }} {% endif %} {% endblock %} {% block breadcrumb %} {{ renderBreadcrumb(breadcrumb) }} {% endblock %} {% block content %}

{{ 'menu.collections'|trans }}

{% if context == 'default' %} {% endif %}
{{ include('App/Collection/_list.html.twig', {'collections': collections}) }}
{% endblock %} {% block modals %} {% if context == 'default' %} {{ include('App/_partials/_modal/_share.html.twig', {'route': url('app_user_collection_index', {username: app.user.username})}) }} {% endif %} {% endblock %}