Skip to content

Commit 689e4ea

Browse files
committed
Update interruption page example
1 parent ab453b3 commit 689e4ea

1 file changed

Lines changed: 14 additions & 8 deletions

File tree

  • packages/govuk-frontend-review/src/views/full-page-examples/interruption-page

packages/govuk-frontend-review/src/views/full-page-examples/interruption-page/index.njk

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,22 @@ title: Is your age correct?
2323
<div class="govuk-grid-column-two-thirds">
2424
{% call govukPanel({
2525
classes: "govuk-panel--interruption",
26-
titleText: "Is your age correct?"
26+
titleText: "Is your age correct?",
27+
actions: {
28+
items: [
29+
{
30+
text: "Yes, this is correct",
31+
type: "button",
32+
href: "#submit"
33+
},
34+
{
35+
text: "Change my age",
36+
href: "#change"
37+
}
38+
]
39+
}
2740
}) %}
2841
<p class="govuk-body">You entered your age as <strong>109</strong>.</p>
29-
<div class="govuk-button-group">
30-
{{ govukButton({
31-
classes: "govuk-button--inverse",
32-
text: "Yes, this is correct"
33-
}) }}
34-
<a href="#" class="govuk-link govuk-link--inverse">Change my age</a>
35-
</div>
3642
{% endcall %}
3743
</div>
3844
</div>

0 commit comments

Comments
 (0)