Skip to content

Action Cards

Grid of linked or informational cards with an optional footer strip.

Action cards slide showing three CTA cards with descriptions and links

Example

yaml
- template: action-cards
  enabled: true
  title: How to help
  subtitle: Ways to support the next cycle
  content:
    footer_text: Contribution options stay lightweight on purpose.
    footer_link_enabled: false
    footer_fa_icon: fa-github
    footer_link_fa_icon: fa-code
    cards:
      - title: Review docs
        fa_icon: fa-book
        link_fa_icon: fa-arrow-right
        description: |-
          Tighten rollout notes and operator checklists.

          - Confirm setup steps
          - Check release examples
        url_label: Open docs backlog
        url: https://example.com/docs/backlog
      - title: Test templates
        description: Run a project through the starter kit and note anything unclear.
        url_label: Report feedback
        url: https://example.com/feedback/templates
      - title: Improve exports
        description: Review PDFs and suggest spacing or readability improvements.
      - title: Confirm scope

Data sources

RegionSource
Cardscontent.cards[]: title, description, optional url_label / url
Footer stripShown if footer_text exists or site.links.repository exists while content.footer_link_enabled is not false
Footer textcontent.footer_text, with lightweight rich text support
Footer buttonsite.links.repository.label / site.links.repository.url, unless content.footer_link_enabled: false

Fields

FieldRequiredType
titleyesstring
subtitlestring
content.footer_textstring; supports lightweight rich text
content.footer_link_enabledboolean
content.footer_fa_iconstring
content.footer_link_fa_iconstring
content.cardsyesarray

content.cards[]

FieldRequiredType
titleyesstring
descriptionstring; supports lightweight rich text
url_labelconditionalstring
urlconditionalstring
fa_iconstring
link_fa_iconstring

url and url_label are paired: set both or omit both. Cards without links render without the bottom link. Cards without description render as compact title-only cards. description and content.footer_text accept the lightweight rich text documented in Concepts. content.footer_link_enabled defaults to true; set it to false to hide the repository footer button on a slide.

Icon defaults are fa-bug, fa-code-branch, fa-book, and fa-bullhorn for cards, fa-arrow-right, fa-arrow-right, fa-arrow-right, and fa-star for card links, fa-github for the footer strip, and fa-code for the footer button. Additional cards default to fa-star, and additional card links default to fa-arrow-right. Icon fields use supported values from the Font Awesome icon reference.