12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <div class="views">
- {{ title_prefix }}
- {{ title }}
- {{ title_suffix }}
- {% if header %}
- <section class="wrap_head">
- {% include 'themes/custom/colloque2024/template/components/header_slide.html.twig' with { croix : true } %}
- </section>
- {% endif %}
- {{ exposed }}
- {{ attachment_before }}
- {% if rows -%}
- <section>
- {{ rows }}
- </section>
- {% elseif empty -%}
- {{ empty }}
- {% endif %}
- {{ pager }}
- {{ attachment_after }}
- {% if footer %}
- <footer>
- {{ footer }}
- </footer>
- {% endif %}
- {{ feed_icons }}
- </div>
|