Accordion
Build vertically collapsing accordions in combination with our Collapse JavaScript plugin.
Component Properties
Usage
{% include 'radix:accordion' with {
title: 'Yolo!',
open_item_id: 1,
title_tag: 'h2',
flush: true,
accordion_item_utility_classes: [
'custom-class'
],
items: [
{
title: 'Item 1',
title_tag: 'h3',
content: 'Content 1',
stay_open: true,
},
{
title: 'Item 2',
title_tag: 'h3',
content: 'Content 2',
},
{
title: 'Item 3',
title_tag: 'h3',
content: 'Content 3',
},
],
} %}Last updated