-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9bd327
commit 0c965f8
Showing
3 changed files
with
36 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: layouts/example.njk | ||
title: Timeline waiting times | ||
figmaLink: [insert link to Figma file here] | ||
vueLink: [insert link to Vue component library here] | ||
--- | ||
|
||
{% from "timeline/macro.njk" import timeline %} | ||
|
||
{{ timeline({ | ||
items: [ | ||
{ | ||
headingText: "Date referred", | ||
isPastItem: true, | ||
text: "8 June 2024" | ||
}, | ||
{ | ||
headingText: "Current status", | ||
active: true, | ||
text: "Waiting for treatment" | ||
}, | ||
{ | ||
headingText: "Estimated treatment start date", | ||
text: "September 2024" | ||
} | ||
] | ||
}) }} |