block--views-block--actus-block-1.html.twig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. * - in_preview: Whether the plugin is being rendered in preview mode.
  15. * - content: The content of this block.
  16. * - attributes: array of HTML attributes populated by modules, intended to
  17. * be added to the main container tag of this template.
  18. * - id: A valid HTML ID and guaranteed unique.
  19. * - title_attributes: Same as attributes, except applied to the main title
  20. * tag that appears in the template.
  21. * - title_prefix: Additional output populated by modules, intended to be
  22. * displayed in front of the main title tag that appears in the template.
  23. * - title_suffix: Additional output populated by modules, intended to be
  24. * displayed after the main title tag that appears in the template.
  25. *
  26. * @see template_preprocess_block()
  27. *
  28. * @ingroup themeable
  29. */
  30. #}
  31. {%
  32. set classes = [
  33. 'block',
  34. 'block-' ~ configuration.provider|clean_class,
  35. 'block-' ~ plugin_id|clean_class,
  36. ]
  37. %}
  38. <div{{ attributes.addClass(classes) }}>
  39. {{ title_prefix }}
  40. {% if label %}
  41. <h2{{ title_attributes }}>{{ label }}</h2>
  42. {% endif %}
  43. {{ title_suffix }}
  44. {% block content %}
  45. {{ content }}
  46. {% endblock %}
  47. </div>
  48. {# {%
  49. set classes = [
  50. 'block',
  51. 'block-' ~ configuration.provider|clean_class,
  52. 'block-' ~ plugin_id|clean_class,
  53. ]
  54. %}
  55. <div{{ attributes.addClass(classes) }}>
  56. {{ title_prefix }}
  57. {% if label %}
  58. <h2{{ title_attributes }}>{{ label }}</h2>
  59. {% endif %}
  60. {{ title_suffix }}
  61. {% block content %}
  62. {# Afficher le contenu exclu séparément #}
  63. {# {% if excluded_field_content %}
  64. <div class="excluded-field-content">
  65. {{ excluded_field_content }}
  66. </div>
  67. {% endif %}
  68. {# Afficher le contenu filtré #}
  69. {# <div class="filtered-content">
  70. {% for field_name, field_content in filtered_content %}
  71. {{ field_content }}
  72. {% endfor %}
  73. </div>
  74. {% endblock %}
  75. </div> #}