Details
Collapsible disclosure block for supplementary content. Renders as a native <details> element.
Basic usage
Content is hidden by default and revealed when the user clicks the summary.
{% details summary="Click to reveal more information" %}
This content is hidden by default. The details rune wraps content in a native disclosure element that the user can toggle open and closed.
{% /details %}
Click to reveal more information
Click to reveal more information
This content is hidden by default. The details rune wraps content in a native disclosure element that the user can toggle open and closed.
Open by default
Use open=true to have the block expanded when the page loads.
{% details summary="This one starts open" open=true %}
Since `open=true` is set, this block is expanded when the page loads.
{% /details %}
This one starts open
This one starts open
Since open=true is set, this block is expanded when the page loads.
Attributes
| Attribute | Type | Default | Description |
|---|---|---|---|
summary | string | "Details" | The clickable summary text |
open | boolean | false | Whether the block is initially expanded |