Accordion

Accordion component

[object Object],[object Object]
C o n t e n t b o d y true
C o n t e n t b o d y 2 true
Markup Details
                            <!-- Accordion Style 1 (Default) -->
<div class="accordion" id="accordion-1">
    {{ accordion }}
  {% for key, item in accordion %}
    {% include 'accordion-section.twig' with {
      expanded: item.expanded,
      title: item.title,
      content_body: item.content,
      paragraph_id: item.paragraph_id,
      key: key,
    } only %}
  {% endfor %}
</div>