diff --git a/app/views/about.html b/app/views/about.html index 7fb3615..2c83101 100755 --- a/app/views/about.html +++ b/app/views/about.html @@ -22,15 +22,9 @@

About

Support

-

The NHS prototype kit is maintained by NHS England. If you've got a question or need support you can:

+

View our support section.

- - -

Contributing

+

Contributing

The prototype kit is always evolving as we learn more. Help us to improve and grow it by:

diff --git a/app/views/layout.html b/app/views/layout.html index cbfda8b..0d76ede 100755 --- a/app/views/layout.html +++ b/app/views/layout.html @@ -21,9 +21,13 @@ {{ footer({ links: [ { - label: "About and support", + label: "About", URL: "/about" }, + { + label: "Support", + URL: "/support" + }, { label: "Updates", URL: "/whats-new/updates" diff --git a/app/views/support.html b/app/views/support.html new file mode 100644 index 0000000..9ed0c3c --- /dev/null +++ b/app/views/support.html @@ -0,0 +1,42 @@ +{% extends 'layout.html' %} + +{% block pageTitle %} + Support - NHS prototype kit +{% endblock %} + +{% block beforeContent %} + {{ breadcrumb({ + href: "/", + text: "Home" + }) }} +{% endblock %} + +{% block content %} +
+ +
+ +

Support

+

The NHS prototype kit is maintained by the service manual team at NHS England with help from community contributors.

+ +

Get support or ask a question

+ +

Email

+

england.service-manual@nhs.net

+ +

Slack

+ + + +

GitHub

+ +

Report a bug or issue - you will need a free GitHub account

+ + +
+ +
+{% endblock %}