-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout-hero-index.html
More file actions
executable file
·107 lines (90 loc) · 2.59 KB
/
layout-hero-index.html
File metadata and controls
executable file
·107 lines (90 loc) · 2.59 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!--
This is the main layout where you can:
- change the header and footer
- add custom CSS and JavaScript
-->
<!-- Extends the prototype kit template which in turn extends the NHS.UK frontend template -->
{% extends "prototype-kit-template.njk" %}
{% block head %}
<!-- Add your custom CSS or Sass in /app/assets/sass/main.scss -->
<link href="/css/main.css" rel="stylesheet">
{% endblock %}
<!-- Edit the header -->
<!-- Header code examples can be found at https://service-manual.nhs.uk/design-system/components/header -->
{% block header %}
{{ header({
logo: {
href: "/",
ariaLabel: "Search and evaluate medtech"
},
service: {
text: "",
href: "/"
},
account: {
items: [
]
}
}) }}
<div class="nhsuk-hero">
<div class="nhsuk-width-container nhsuk-hero--border">
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-one-half nhsuk-u-one-half-tablet">
<div class="nhsuk-hero__wrapper">
<h1 class="nhsuk-heading-l nhsuk-u-margin-bottom-5">Find and compare Medtech prototype</h1>
<p class="nhsuk-body-l nhsuk-u-margin-bottom-0">(Compass) is a digital platform designed to help procurement and clinical professionals
find, compare and submit Medtech evaulations for NHS trusts. </p>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
<!-- Edit the footer -->
<!-- Footer code examples can be found at https://service-manual.nhs.uk/design-system/components/footer -->
{% block footer %}
{{ footer({
meta: {
items: [
{
href: "/",
text: "Help and support"
},
{
href: "/cookies",
text: "Cookies"
},
{
href: "/privacy",
text: "Privacy"
},
{
href: "/terms",
text: "Terms and conditions"
},
{
href: "/accessibility",
text: "Accessibility statement"
},
{
href: "/prototype-admin/reset?returnPage=" + (currentPage | urlencode),
text: "Reset data"
}
]
}
}) }}
{% endblock %}
{% block bodyEnd %}
<script src="/nhsuk-frontend/nhsuk-frontend.min.js" type="module"></script>
<script type="module">
import { initAll } from '/nhsuk-frontend/nhsuk-frontend.min.js'
initAll()
</script>
{% block scripts %}
<!-- Custom JavaScript files can be added to this file -->
{% include "includes/scripts.html" %}
<!-- For adding page specific JavaScript -->
{% block pageScripts %}{% endblock %}
{% endblock %}
{% endblock %}