From a963d46d55277b3771604dc5d878da05d620125a Mon Sep 17 00:00:00 2001 From: Vicky Teinaki Date: Mon, 25 Nov 2024 21:18:26 +0000 Subject: [PATCH] Added support page and link and tweaked the about page (#149) New support page ![support page with details of slack channels](https://github.com/user-attachments/assets/efd0ef4b-5434-4b77-8b03-3b08e602145a) About page changed | Before | After | | -- | -- | | ![Before about page](https://github.com/user-attachments/assets/aac638b1-b998-42c9-b341-5e5cecc8d958) | ![after about page with contribution section changed](https://github.com/user-attachments/assets/1d283517-665f-4a11-a9ca-7e004d9ef4cd) | Footer | Example | Image | | -- | -- | | Before | footer link - with About and support
NHS prototype kit on GitHub Cookies | | After | footer link with About Support NHS
prototype kit on GitHub Cookies | --------- Co-authored-by: Frankie Roberto --- app/views/about.html | 10 ++-------- app/views/layout.html | 6 +++++- app/views/support.html | 42 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 9 deletions(-) create mode 100644 app/views/support.html diff --git a/app/views/about.html b/app/views/about.html index 7fb3615e..2c831014 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 cbfda8bf..0d76edef 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 00000000..9ed0c3cc --- /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 %}