{{>list_header}}
<ul class="tui-accordion{{#if cssClass}} {{cssClass}}{{/if}}">
  {{#each accordionItems}}
{{>tui_accordion heading=fields.heading text=fields.text hash=fields.hash headingLevel=../accordionItemsHeadingLevel}}
  {{/each}}
</ul>

{{#if renderMicrodataForFaqPage}}
<script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "FAQPage",
    "mainEntity": [
      {{#each accordionItems}}
      {
        "@type": "Question",
        "name": "{{{fields.heading}}}",
        "acceptedAnswer": {
          "@type": "Answer",
          "text": {{{JSONstringify (markdown fields.text)}}}
        }
      }{{#not @last}},{{/not}}
    {{/each}}
    ]
  }
</script>
{{/if}}
