You are here

paragraphs-browser-wrapper.html.twig in Paragraphs Browser 8

Default theme implementation for a paragraphs browser wrapper.

Available variables:

  • children: Contains the child elements of the paragraphs dropbutton menu.

File

templates/paragraphs-browser-wrapper.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a paragraphs browser wrapper.
  5. *
  6. * Available variables:
  7. * - children: Contains the child elements of the paragraphs dropbutton menu.
  8. *
  9. * @ingroup themeable
  10. */
  11. #}
  12. {% if children %}
  13. {% spaceless %}
  14. <div class="paragraphs-browser-wrapper">
  15. {{ children }}
  16. </div>
  17. {% endspaceless %}
  18. {% endif %}