block--config-pages--contact.html.twig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <button class="bouton bouton-contact">
  42. <h2{{ title_attributes }}>{{ label }}</h2>
  43. </button>
  44. {% endif %}
  45. {{ title_suffix }}
  46. {% block content %}
  47. <div class="contacts">
  48. <div class="contacts-full">
  49. <section class="titre">
  50. <p> Contacts </p>
  51. </section>
  52. {{ content }}
  53. </div>
  54. </div>
  55. {% endblock %}
  56. </div>