Skip to content

Commit d0b41a2

Browse files
committed
PPHA-478: Use care card over do dont list for Speak to a gp partial
1 parent c344f49 commit d0b41a2

1 file changed

Lines changed: 23 additions & 16 deletions

File tree

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
1-
<div class="nhsuk-do-dont-list">
2-
<h2 class="nhsuk-do-dont-list__label">Speak to a GP if:</h2>
3-
<p>You have any of the following symptoms:</p>
1+
{% from "nhsuk/components/card/macro.jinja" import card %}
42

5-
<ul class="nhsuk-list nhsuk-list--bullet" role="list">
6-
<li>a <a href="https://www.nhs.uk/symptoms/cough/">cough</a> that does not go away after 3 weeks</li>
7-
<li>a long-standing cough that gets worse</li>
8-
<li><a href="https://www.nhs.uk/conditions/chest-infection/">chest infections</a> that keep coming back</li>
9-
<li><a href="https://www.nhs.uk/symptoms/coughing-up-blood/">coughing up blood</a></li>
10-
<li>an ache or pain when breathing or coughing</li>
11-
<li>persistent <a href="https://www.nhs.uk/symptoms/shortness-of-breath/">breathlessness</a></li>
12-
<li>persistent tiredness or lack of energy</li>
13-
<li>loss of appetite or unexplained weight loss</li>
14-
</ul>
3+
{% set cardDescriptionHtml %}
4+
<p>You have any of the following symptoms:</p>
155

16-
<p>They could be <a href="https://www.nhs.uk/conditions/lung-cancer/symptoms/">symptoms of lung cancer</a>. Your GP will ask about your general health and your symptoms.</p>
6+
<ul class="nhsuk-list nhsuk-list--bullet" role="list">
7+
<li>a <a href="https://www.nhs.uk/symptoms/cough/">cough</a> that does not go away after 3 weeks</li>
8+
<li>a long-standing cough that gets worse</li>
9+
<li><a href="https://www.nhs.uk/conditions/chest-infection/">chest infections</a> that keep coming back</li>
10+
<li><a href="https://www.nhs.uk/symptoms/coughing-up-blood/">coughing up blood</a></li>
11+
<li>an ache or pain when breathing or coughing</li>
12+
<li>persistent <a href="https://www.nhs.uk/symptoms/shortness-of-breath/">breathlessness</a></li>
13+
<li>persistent tiredness or lack of energy</li>
14+
<li>loss of appetite or unexplained weight loss</li>
15+
</ul>
1716

18-
<p>You may be asked to have a <a href="https://www.nhs.uk/tests-and-treatments/blood-tests/">blood test</a> to rule out some of the possible causes of your symptoms, such as a <a href="https://www.nhs.uk/conditions/chest-infection/">chest infection</a>.</p>
19-
</div>
17+
<p>They could be <a href="https://www.nhs.uk/conditions/lung-cancer/symptoms/">symptoms of lung cancer</a>. Your GP will ask about your general health and your symptoms.</p>
18+
19+
<p>You may be asked to have a <a href="https://www.nhs.uk/tests-and-treatments/blood-tests/">blood test</a> to rule out some of the possible causes of your symptoms, such as a <a href="https://www.nhs.uk/conditions/chest-infection/">chest infection</a>.</p>
20+
{% endset %}
21+
22+
{{ card({
23+
"type": "non-urgent",
24+
"heading": "Speak to a GP if:",
25+
"descriptionHtml": cardDescriptionHtml
26+
}) }}

0 commit comments

Comments
 (0)