You are here

paragraphs-browser-paragraph-type.html.twig in Paragraphs Browser 8

Default theme implementation for a paragraphs browser wrapper.

File

templates/paragraphs-browser-paragraph-type.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a paragraphs browser wrapper.
  5. *
  6. * @ingroup themeable
  7. */
  8. #}
  9. <fieldset class="paragraphs-browser-paragraph-type">
  10. <legend>{{ form.label }}</legend>
  11. {% if form.icon %}
  12. <div>
  13. {{ form.icon}}
  14. </div>
  15. {% endif %}
  16. {% if form.description %}
  17. <div>
  18. <span>{{ form.description }}</span>
  19. </div>
  20. {% endif %}
  21. {{ form.add_more }}
  22. </fieldset>