block--colloque2024-mainpagecontent.html.twig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a block.
  5. *
  6. * Available variables:
  7. * - plugin_id: The ID of the block implementation.
  8. * - label: The configured label of the block if visible.
  9. * - configuration: A list of the block's configuration values.
  10. * - label: The configured label for the block.
  11. * - label_display: The display settings for the label.
  12. * - provider: The module or other provider that provided this block plugin.
  13. * - Block plugin specific settings will also be stored here.
  14. * - content: The content of this block.
  15. * - attributes: array of HTML attributes populated by modules, intended to
  16. * be added to the main container tag of this template.
  17. * - id: A valid HTML ID and guaranteed unique.
  18. * - title_attributes: Same as attributes, except applied to the main title
  19. * tag that appears in the template.
  20. * - title_prefix: Additional output populated by modules, intended to be
  21. * displayed in front of the main title tag that appears in the template.
  22. * - title_suffix: Additional output populated by modules, intended to be
  23. * displayed after the main title tag that appears in the template.
  24. *
  25. * @see template_preprocess_block()
  26. *
  27. * @ingroup themeable
  28. */
  29. #}
  30. {% set class = [elements][0].content['#view_id'] %}
  31. {% if class == 'programme' or class == 'publications' or class == 'bibliographie' or class == 'interviews' or class == 'search' or class == 'les_intervenants' %}
  32. {% set addClass = 'container' %}
  33. {% endif %}
  34. <div class="{{class}} {{addClass}}">
  35. {% if class == 'programme' or class == 'les_intervenants' %}
  36. {{ title_prefix }}
  37. {% if label %}
  38. <h2{{ title_attributes }}>{{ label }}</h2>
  39. {% endif %}
  40. {% endif %}
  41. {{ title_suffix }}
  42. {% block content %}
  43. {{ content }}
  44. {% endblock %}