views-view.html.twig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for main view template.
  5. *
  6. * Available variables:
  7. * - attributes: Remaining HTML attributes for the element.
  8. * - css_name: A CSS-safe version of the view name.
  9. * - css_class: The user-specified classes names, if any.
  10. * - header: The optional header.
  11. * - footer: The optional footer.
  12. * - rows: The results of the view query, if any.
  13. * - empty: The content to display if there are no rows.
  14. * - pager: The optional pager next/prev links to display.
  15. * - exposed: Exposed widget form/info to display.
  16. * - feed_icons: Optional feed icons to display.
  17. * - more: An optional link to the next page of results.
  18. * - title: Title of the view, only used when displaying in the admin preview.
  19. * - title_prefix: Additional output populated by modules, intended to be
  20. * displayed in front of the view title.
  21. * - title_suffix: Additional output populated by modules, intended to be
  22. * displayed after the view title.
  23. * - attachment_before: An optional attachment view to be displayed before the
  24. * view content.
  25. * - attachment_after: An optional attachment view to be displayed after the
  26. * view content.
  27. * - dom_id: Unique id for every view being printed to give unique class for
  28. * Javascript.
  29. *
  30. * @see template_preprocess_views_view()
  31. *
  32. * @ingroup themeable
  33. */
  34. #}
  35. <div class="views">
  36. {{ title_prefix }}
  37. {{ title }}
  38. {{ title_suffix }}
  39. {% if header %}
  40. <section class="wrap_head">
  41. {% include 'themes/custom/popsu_colloque/template/components/header_slide.html.twig' with { croix : true } %}
  42. </section>
  43. {% endif %}
  44. {{ exposed }}
  45. {{ attachment_before }}
  46. {% if rows -%}
  47. <section>
  48. {{ rows }}
  49. </section>
  50. {% elseif empty -%}
  51. {{ empty }}
  52. {% endif %}
  53. {{ pager }}
  54. {{ attachment_after }}
  55. {% if footer %}
  56. <footer>
  57. {{ footer }}
  58. </footer>
  59. {% endif %}
  60. {{ feed_icons }}
  61. </div>