Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug docs site",
"type": "node",
"request": "launch",
"runtimeExecutable": "make",
"runtimeArgs": ["debug"],
"cwd": "${workspaceFolder}/docs",
"console": "integratedTerminal",
"preLaunchTask": "stop-already-running",
"skipFiles": ["<node_internals>/**"]
}
]
}
13 changes: 13 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "stop-already-running",
"type": "shell",
"command": "kill $(lsof -ti :4000); exit 0;",
"options": {
"cwd": "${workspaceFolder}/docs"
}
}
]
}
5 changes: 4 additions & 1 deletion docs/_data/sidebar-section-order.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
# Sections not listed here will appear at the end in alphabetical order

sections:
- "By use case"
- "Accessing NHS Notify"
- "Features by message channel"
- "Features by organisation type"
- "Send messages based on your needs"
- "By use case"
- "Writing a message"
- "Sending a message"
- "Going live"
10 changes: 6 additions & 4 deletions docs/_includes/custom-components/campaign-feature-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ <h3 class="nhsuk-heading-s">Message channels</h3>
<tr class="nhsuk-table__row">
<td class="nhsuk-table__cell">NHS App messages
<div class="nhsuk-hint">
<p class="nhsuk-body">Includes push notifications that are sent between 6am and 10pm to support sociable hours.</p>
<p class="nhsuk-body">If push notifications are turned off, eligible national programmes can send a text message (SMS) instead. The text message tells recipients they have a new message in the NHS App.</p>
<p class="nhsuk-body">Includes push notifications that are sent between 6am and 10pm to support sociable
hours.</p>
<p class="nhsuk-body">If push notifications are turned off, eligible national programmes can send a text
message (SMS) instead. The text message tells recipients they have a new message in the NHS App.</p>
</div>
</td>
<td class="nhsuk-table__cell">
Expand Down Expand Up @@ -212,7 +214,7 @@ <h3 class="nhsuk-heading-s">Writing messages</h3>
<tr class="nhsuk-table__row">
<td class="nhsuk-table__cell">Personalisation
<div class="nhsuk-hint">
Add details like your recipients name, appointment times or reference numbers to your messages
Add details like your recipient's name, appointment times or reference numbers to your messages
</div>
</td>
<td class="nhsuk-table__cell">
Expand Down Expand Up @@ -259,7 +261,7 @@ <h3 class="nhsuk-heading-s">Sending messages</h3>
<tr class="nhsuk-table__row">
<td class="nhsuk-table__cell">Automatic contact look up (mandatory)
<div class="nhsuk-hint">
NHS Notify automatically finds and uses your recipients contact details from their NHS number
NHS Notify automatically finds and uses your recipients' contact details from their NHS number
</div>
</td>
<td class="nhsuk-table__cell">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ <h3 class="nhsuk-heading-s">Message channels</h3>
<tr class="nhsuk-table__row">
<td class="nhsuk-table__cell">NHS App messages
<div class="nhsuk-hint">
<p class="nhsuk-body">Includes push notifications that are sent between 6am and 10pm to support sociable hours.</p>
<p class="nhsuk-body">If push notifications are turned off, eligible national programmes can send a text message (SMS) instead. The text message tells recipients they have a new message in the NHS App.</p>
<p class="nhsuk-body">Includes push notifications that are sent between 6am and 10pm to support sociable
hours.</p>
<p class="nhsuk-body">If push notifications are turned off, eligible national programmes can send a text
message (SMS) instead. The text message tells recipients they have a new message in the NHS App.</p>
</div>
</td>
<td class="nhsuk-table__cell">
Expand Down Expand Up @@ -212,7 +214,7 @@ <h3 class="nhsuk-heading-s">Writing messages</h3>
<tr class="nhsuk-table__row">
<td class="nhsuk-table__cell">Personalisation
<div class="nhsuk-hint">
Add details like your recipients name, appointment times or reference numbers to your messages
Add details like your recipient's name, appointment times or reference numbers to your messages
</div>
</td>
<td class="nhsuk-table__cell">
Expand Down Expand Up @@ -259,7 +261,7 @@ <h3 class="nhsuk-heading-s">Sending messages</h3>
<tr class="nhsuk-table__row">
<td class="nhsuk-table__cell">Automatic contact look up (mandatory)
<div class="nhsuk-hint">
NHS Notify automatically finds and uses your recipients contact details from their NHS number
NHS Notify automatically finds and uses your recipients' contact details from their NHS number
</div>
</td>
<td class="nhsuk-table__cell">
Expand Down
Loading
Loading