{% extends 'D2ResourceBundle::base.html.twig' %} {% set tag_list = d2_get_all_tag_list(collections) %} {% if app.request.get('page') %} {% set current_page = 'Page: ' ~ app.request.get('page') %} {% else %} {% set current_page = 'Page: 1' %} {% endif %} {% block title %} {{ d2_sys_config('sys_orginization') }} - {% trans %}Collections{% endtrans %} {% endblock title %} {% block head_seo %} {% endblock head_seo %} {% block head_script_extra %} {% endblock head_script_extra %} {% block head_style_extra %} {% endblock head_style_extra %} {% block page_header %} {% endblock page_header %} {% block content %}
{% for k, v in app.request.query %} {% if k|lower not in ['search', 'tags'] %} {# Theme, Location, Institution #} {# Paritipation, exhibition, education / Johannesburg Athens etc / Rotterdam Museum, District Six Museum #} {% endif %} {% endfor %}

{% if collections|length != 0 %} {% for entity in collections %} {% if entity.slug|trim != '' %} {% set show_path = path('collection_show_slug', { 'slug': entity.slug}) %} {% else %} {% set show_path = path('collection_show', { 'id': entity.id}) %} {% endif %} {% if loop.first %}
{% endif %}
{% if not loop.first and loop.index%3 == 0 %}
{% endif %} {% endfor %}
{% endif %}
{% endblock content %}