-
Notifications
You must be signed in to change notification settings - Fork 109
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
8c22734
commit 071de85
Showing
4 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
app/components/header/header-transactional-service-signed-in.njk
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,47 @@ | ||
{% set html_style = 'background-color: #f0f4f5;' %} | ||
{% set title = 'Header transactional service that is signed in' %} | ||
{% from 'components/header/macro.njk' import header %} | ||
{% extends 'layout.njk' %} | ||
|
||
{% block body %} | ||
|
||
{{ header({ | ||
"service": { | ||
"name": "Invite patients to a consultation" | ||
}, | ||
"showNav": "true", | ||
"showSearch": "false", | ||
"account": { | ||
"links": [ | ||
{ | ||
label: { | ||
text: "My account" | ||
}, | ||
href: "#" | ||
}, | ||
{ | ||
label: { | ||
text: "Sign out" | ||
}, | ||
href: "#" | ||
} | ||
] | ||
}, | ||
"primaryLinks": [ | ||
{ | ||
"url" : "#", | ||
"label" : "Find a patient" | ||
}, | ||
{ | ||
'url' : '#', | ||
'label' : 'Consultation schedule' | ||
}, | ||
{ | ||
'url' : '#', | ||
'label' : 'Settings' | ||
} | ||
] | ||
}) | ||
}} | ||
|
||
{% endblock %} |
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