-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsearch.njk
More file actions
35 lines (29 loc) · 880 Bytes
/
search.njk
File metadata and controls
35 lines (29 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% extends "./layouts/main.njk" %}
{% block pageTitle %}
{{serviceName}}
{% endblock %}
{% block content %}
{% if isIntegrationEnv %}
{% from "govuk/components/notification-banner/macro.njk" import govukNotificationBanner %}
{% set html %}
<p class="govuk-notification-banner__heading">
This is the integration environment and may not be stable please use the <a class="govuk-notification-banner__link" href="https://gov-search.service.gov.uk/">live application</a>.
</p>
{% endset %}
{{ govukNotificationBanner({
html: html
}) }}
{% endif %}
<div
class="govuk-main-wrapper"
id="page-content"
aria-busy="true"
>
<h1 aria-live="assertive" class="govuk-heading-xl loading initial">
Loading, please wait
</h1>
</div>
{% endblock %}
{% block pageScripts %}
<script type="module" src="/javascripts/main.js"></script>
{% endblock %}