region--header-top-right.html.twig 690 B

1234567891011121314151617181920212223242526272829303132333435
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a region.
  5. *
  6. * Available variables:
  7. * - content: The content for this region, typically blocks.
  8. * - attributes: HTML attributes for the region <div>.
  9. * - region: The name of the region variable as defined in the theme's
  10. * .info.yml file.
  11. *
  12. * @see template_preprocess_region()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. {% if content %}
  18. <div{{ attributes }}>
  19. {{ content }}
  20. <div class="close-block" >
  21. <div>
  22. <span></span>
  23. <span></span>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="open-block" >
  28. <div>
  29. <span></span>
  30. <span></span>
  31. <span></span>
  32. </div>
  33. </div>
  34. {% endif %}