Skip to content

Commit 8cc737d

Browse files
authored
Merge pull request #29 from NHSDigital/fix-branch
Fix branch
2 parents bd1c4aa + ed6e500 commit 8cc737d

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

docs/_layouts/no-nav-page.html

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@
2222
<div class="nhsuk-width-container">
2323
<main class="nhsuk-main-wrapper" id="maincontent" role="main">
2424
<div class="nhsuk-grid-row">
25-
<div class="nhsuk-grid-column-full">
26-
<div class="nhsnotify-pane__main-content nhsuk-grid-column-three-quarters">
27-
{% if page.section != undefined %}
28-
<heading class="nhsuk-heading-s" style="margin-bottom: 0; color: #4c6272">{{ page.section }}</heading>
29-
{% endif %}
30-
<h1>{{ page.title }}</h1>
31-
{{ content }}
32-
</div>
25+
<div class="nhsnotify-pane__main-content nhsuk-grid-column-three-quarters">
26+
{% if page.section != undefined %}
27+
<heading class="nhsuk-heading-s" style="margin-bottom: 0; color: #4c6272">{{ page.section }}</heading>
28+
{% endif %}
29+
<h1>{{ page.title }}</h1>
30+
{{ content }}
3331
</div>
3432
</div>
3533
</main>

docs/pages/using-nhs-notify/personalisation.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can send personalised messages using a single template.
1515
To personalise a message, use double brackets to add a placeholder to your content. For example:
1616

1717
{% include components/inset-text.html
18-
text='<code>Hello ((firstName)), your NHS Number is ((nhsNumber))'
18+
text='Hello ((firstName)), your NHS Number is ((nhsNumber))'
1919
%}
2020

2121
## Personal Demographics Service (PDS) personalisation fields
@@ -48,11 +48,7 @@ Include a personalisation block in your API request.
4848
For example, if you wanted to include 'practice' as a personalisation field, the personalisation block would be:
4949

5050
{% include components/inset-text.html
51-
text='{
52-
53-
"practice": "PRACTICE_NAME",
54-
55-
}'
51+
text='"practice": "PRACTICE_NAME",'
5652
%}
5753

5854
Read the [API documentation](https://digital.nhs.uk/developer/api-catalogue/nhs-notify#post-/v1/message-batches) to find out where to put this in your request.

0 commit comments

Comments
 (0)