{{#freestyle-usage "accordion" title="Accordion"}} {{#list-accordion source=products key="name" as |ac|}} {{#ac.head buttonLabel="details"}}
{{ac.item.name}}
{{ac.item.lang}}
{{/ac.head}} {{#ac.body}}

{{ac.item.name}}

{{ac.item.desc}}

Learn more...

{{/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.name}}
{{a.item.lang}}
{{/a.head}} {{#a.body}}

{{a.item.name}}

{{a.item.desc}}

Learn more...

{{/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.name}}
{{a.item.lang}}
{{/a.head}} {{#a.body}}

{{a.item.name}}

{{a.item.desc}}

Learn more...

{{/a.body}} {{/list-accordion}} {{/freestyle-usage}}