Work in progress
This page is a design preview. It may not contain the latest guidance and may not behave as expected.
Current guidance can always be found at design-system.dwp.gov.uk.
{% from "govuk/components/summary-list/macro.njk" import govukSummaryList %}
<h1 class="govuk-heading-xl">
Check your answers
</h1>
<h2 class="govuk-heading-m">
How we will contact you
</h2>
{{ govukSummaryList({
rows: [
{
key: {
text: "When we write to you"
},
value: {
text: "Standard letter (12-point Arial text on white paper)"
},
actions: {
items: [
{
href: "#",
text: "Change",
visuallyHiddenText: " how we write to you"
}
]
}
},
{
key: {
text: "When we speak to you"
},
value: {
text: "Standard phone call"
},
actions: {
items: [
{
href: "#",
text: "Change",
visuallyHiddenText: " how we speak to you"
}
]
}
},
{
key: {
text: "Do you need any other help?"
},
value: {
text: "No"
},
actions: {
items: [
{
href: "#",
text: "Change",
visuallyHiddenText: " if you need any other help"
}
]
}
}
]
}) }}