-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.njk
More file actions
17 lines (16 loc) · 620 Bytes
/
banner.njk
File metadata and controls
17 lines (16 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% from "govuk/components/notification-banner/macro.njk" import govukNotificationBanner %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
{% set html %}
<p class="govuk-notification-banner__heading">
Elections
<p class="ovuk-notification-banner__body">Please vote in our upcoming elections.</p>
<p class="govuk-notification-banner__body">
<strong>To view the candidates please see the <a class="govuk-notification-banner__link" href="/blog/2025/07/elections">election blog post </a>.</strong
</p>
{% endset %}
{{ govukNotificationBanner({
html: html
}) }}
</div>
</div>