Skip to content

Timeline

Release cards populated from generated.yaml. Each card in featured_release_ids is matched against generated.releases[].

Timeline slide showing release cards with version, date, and summary bullets

Example

Slide (in presentation.yaml)

yaml
- template: timeline
  enabled: true
  title: Releases
  subtitle: Two tagged updates landed during this cycle
  content:
    latest_badge_label: Latest
    footer_link_label: Browse the release archive
    featured_release_ids:
      - starter-kit-v2
      - export-layout-v1

Matching data (in generated.yaml)

yaml
generated:
  releases:
    - id: starter-kit-v2
      version: Starter Kit v2
      published_at: 2026-05-20
      url: https://example.com/releases/starter-kit-v2
      summary_bullets:
        - Added launch ownership to the starter kit.
        - Standardized rollout summary exports.
    - id: export-layout-v1
      version: Export Layout v1
      published_at: 2026-04-18
      url: https://example.com/releases/export-layout-v1
      summary_bullets:
        - Improved PDF spacing for review decks.

Data sources

RegionSource
Cardsfeatured_release_ids matched to generated.releases[]
"Latest" badgecontent.latest_badge_label on the first card
Version and dategenerated.releases[].version, .published_at
Card bulletsgenerated.releases[].summary_bullets
Footer linkcontent.footer_link_label with href site.links.repository.url/releases

Fields

FieldRequiredType
titleyesstring
subtitlestring
content.featured_release_idsyesstring[]
content.latest_badge_labelstring
content.footer_link_labelstring
content.empty_state_titlestring
content.empty_state_messagestring

IDs with no matching generated.releases[] entry are skipped. An empty featured_release_ids array shows the empty state copy if provided.