block--entity-field--node--field-images.html.twig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  28. {%
  29. set classes = [
  30. 'block',
  31. 'block-' ~ configuration.provider|clean_class,
  32. 'block-' ~ plugin_id|clean_class,
  33. ]
  34. %}
  35. <div{{ attributes.addClass(classes) }}>
  36. {{ title_prefix }}
  37. {% if label %}
  38. {# <video autoplay muted loop id="myVideo">
  39. <source src="rain.mp4" type="video/mp4">
  40. </video> #}
  41. <span><h2{{ title_attributes }}>{{ label }}</h2></span>
  42. {% endif %}
  43. {{ title_suffix }}
  44. {% block content %}
  45. {% if is_ressource_page %}
  46. {# Affichage du carrousel uniquement sur les pages de type ressource #}
  47. <div class="carousel">
  48. <div class="main-image-block">
  49. <div class="arrow left" id="prevArrow">←</div>
  50. <div class="main-image-container">
  51. <img id="mainImage" src="..." alt="Image principale">
  52. <p id="caption" class="caption">Légende ici</p>
  53. </div>
  54. <div class="arrow right" id="nextArrow">→</div>
  55. </div>
  56. <div class="caption" id="caption"></div>
  57. <div class="thumbnails-wrapper">
  58. <div class="thumb-arrow up" id="thumbPrev">←</div>
  59. <div class="thumbnails" id="thumbnails"></div>
  60. <div class="thumb-arrow down" id="thumbNext">→</div>
  61. </div>
  62. </div>
  63. {% endif %}
  64. {{ content }}
  65. {% endblock %}
  66. </div>