From b062a598ce563965a00854ff88953332e508eb37 Mon Sep 17 00:00:00 2001 From: vickytnz Date: Sun, 24 Nov 2024 18:06:13 +0000 Subject: [PATCH 1/7] added support page and link and tweaked the about page --- app/views/about.html | 10 ++-------- app/views/layout.html | 6 +++++- app/views/support.html | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 40 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 00e82212..fdd9ef8c 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: "NHS prototype kit on GitHub", URL: "https://github.com/nhsuk/nhsuk-prototype-kit" diff --git a/app/views/support.html b/app/views/support.html new file mode 100644 index 00000000..d37ac294 --- /dev/null +++ b/app/views/support.html @@ -0,0 +1,33 @@ +{% extends 'layout.html' %} + +{% block pageTitle %} + Cookies - NHS prototype kit +{% endblock %} + +{% block beforeContent %} + {{ breadcrumb({ + href: "/", + text: "Home" + }) }} +{% endblock %} + +{% block content %} +
+ +
+ +

Support

+

The NHS prototype kit is maintained by NHS England service manual team with help from community contributors. If you've got a question or need support you can:

+ +

You can also get involved with contributing.

+

There is a different place to get support for the NHS general service manual (including the design system).

+ + +
+ +
+{% endblock %} From 01d068b2439af0d13cf53bb4a7a7260fa0b38c94 Mon Sep 17 00:00:00 2001 From: Vicky Teinaki Date: Mon, 25 Nov 2024 16:37:40 +0000 Subject: [PATCH 2/7] Update app/views/support.html Co-authored-by: Frankie Roberto --- app/views/support.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/views/support.html b/app/views/support.html index d37ac294..d94697e9 100644 --- a/app/views/support.html +++ b/app/views/support.html @@ -23,8 +23,6 @@

Support

  • use Slack - if you have an NHS England email or have been given access to the NHS England slack instance you can use the NHS England #prototype-kit slack channel. If you do not you can also use the NHS digital service manual #prototype-kit Slack channel
  • add a bug or view issues on on GitHub for the prototype kit or this documentation site
  • -

    You can also get involved with contributing.

    -

    There is a different place to get support for the NHS general service manual (including the design system).

    From 3417c13bc579091e66226f3db078d7bcba3d611f Mon Sep 17 00:00:00 2001 From: Vicky Teinaki Date: Mon, 25 Nov 2024 16:37:54 +0000 Subject: [PATCH 3/7] Update app/views/support.html Co-authored-by: Frankie Roberto --- app/views/support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/support.html b/app/views/support.html index d94697e9..374643b8 100644 --- a/app/views/support.html +++ b/app/views/support.html @@ -1,7 +1,7 @@ {% extends 'layout.html' %} {% block pageTitle %} - Cookies - NHS prototype kit + Support - NHS prototype kit {% endblock %} {% block beforeContent %} From d3525afded337a4496993b912669ff89a0d46372 Mon Sep 17 00:00:00 2001 From: Vicky Teinaki Date: Mon, 25 Nov 2024 16:38:11 +0000 Subject: [PATCH 4/7] Update app/views/support.html Co-authored-by: Frankie Roberto --- app/views/support.html | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/app/views/support.html b/app/views/support.html index 374643b8..aa199345 100644 --- a/app/views/support.html +++ b/app/views/support.html @@ -18,11 +18,18 @@

    Support

    The NHS prototype kit is maintained by NHS England service manual team with help from community contributors. If you've got a question or need support you can:

    - +

    Email

    +

    england.service-manual@nhs.net

    + +

    Slack

    + +

    #prototype-kit channel on the NHS England Slack.

    + +

    #prototype-kit channel on the NHS digital service manual Slack

    + +

    GitHub

    + +

    Report a bug or issue - requires a free GitHub account.

    From 50f37d9d7678a955f78c5969095fcb06c8d72a01 Mon Sep 17 00:00:00 2001 From: Frankie Roberto Date: Mon, 25 Nov 2024 18:25:15 +0000 Subject: [PATCH 5/7] Tweak content --- app/views/support.html | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/app/views/support.html b/app/views/support.html index aa199345..557193f3 100644 --- a/app/views/support.html +++ b/app/views/support.html @@ -16,19 +16,23 @@
    -

    Support

    -

    The NHS prototype kit is maintained by NHS England service manual team with help from community contributors. If you've got a question or need support you can:

    -

    Email

    +

    Support

    +

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

    + +

    If you’ve got a question or need support you can:

    + +

    Email

    england.service-manual@nhs.net

    - -

    Slack

    - -

    #prototype-kit channel on the NHS England Slack.

    - -

    #prototype-kit channel on the NHS digital service manual Slack

    - -

    GitHub

    - + +

    Slack

    + + + +

    GitHub

    +

    Report a bug or issue - requires a free GitHub account.

    From 41c6b7490965152e5d1af2213d92e33a4f3d98c5 Mon Sep 17 00:00:00 2001 From: vickytnz Date: Mon, 25 Nov 2024 20:16:43 +0000 Subject: [PATCH 6/7] added header --- app/views/support.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/views/support.html b/app/views/support.html index 557193f3..e4802c85 100644 --- a/app/views/support.html +++ b/app/views/support.html @@ -17,21 +17,21 @@

    Support

    -

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

    +

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

    -

    If you’ve got a question or need support you can:

    +

    Get support or ask a question

    -

    Email

    +

    Email

    england.service-manual@nhs.net

    -

    Slack

    +

    Slack

    -

    GitHub

    +

    GitHub

    Report a bug or issue - requires a free GitHub account.

    From 58506c96c715524ca62ba791aeccfc22f1aef875 Mon Sep 17 00:00:00 2001 From: vickytnz Date: Mon, 25 Nov 2024 20:25:08 +0000 Subject: [PATCH 7/7] tweak language for GitHub account --- app/views/support.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/support.html b/app/views/support.html index e4802c85..9ed0c3cc 100644 --- a/app/views/support.html +++ b/app/views/support.html @@ -33,7 +33,7 @@

    Slack

    GitHub

    -

    Report a bug or issue - requires a free GitHub account.

    +

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