Changelog layout configuration

navigationdocs.ymlfrontmatter

Changelogs now support two layouts:

  • timeline (default) renders a searchable timeline of condensed entry cards.
  • classic renders stacked full entries inline, preserving code formatting, copy buttons, and links.

Set either value site-wide with layout.changelog-layout in docs.yml:

docs.yml
1layout:
2 changelog-layout: classic

Or override the site-wide default for a single changelog by adding layout to its overview page frontmatter:

changelog/overview.mdx
1---
2layout: classic
3---

The per-changelog override takes priority over the site-wide setting.

Read the docs