{{#freestyle-usage "accordion" title="Accordion"}} {{#list-accordion source=products key="name" as |ac|}} {{#ac.head buttonLabel="details"}}
{{ac.item.desc}}
{{/ac.body}} {{/list-accordion}} {{/freestyle-usage}} {{#freestyle-usage "accordion-single" title="Accordion, One Item"}} {{#list-accordion source=(take 1 products) key="name" as |a|}} {{#a.head buttonLabel="details"}}{{a.item.desc}}
{{/a.body}} {{/list-accordion}} {{/freestyle-usage}} {{#freestyle-usage "accordion-not-expandable" title="Accordion, Not Expandable"}} {{#list-accordion source=products key="name" as |a|}} {{#a.head buttonLabel="details" isExpandable=(eq a.item.lang "golang")}}{{a.item.desc}}
{{/a.body}} {{/list-accordion}} {{/freestyle-usage}}