links

Buttons rendered below the tagline in the jumbotron. Each entry defines the button label and its target URL.

PropertyDetails
Type{href: string, text: string, class?: string, id?: string}[]
Accepted values
  • Array of objects, each with href (string, required) and text (string, required)
  • Optional per-item properties: class (string, CSS classes for the <a> element), id (string)

Example

links:
  - href: "/about/"
    text: "About"
  - href: "/downloads/"
    text: "Download"
    class: "btn btn-primary"
    id: "download-btn"

Front Matter