File tree Expand file tree Collapse file tree 1 file changed +50
-0
lines changed
Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ {% extends "layout.html" %}
2+ {% from 'breadcrumb/macro.njk' import breadcrumb %}
3+ {% from 'button/macro.njk' import button %}
4+
5+ {% set mainClasses = "nhsuk-main-wrapper--s" %}
6+
7+ {% block beforeContent %}
8+ {{ breadcrumb({
9+ items: [
10+ {
11+ href: "#",
12+ text: "Home"
13+ },
14+ {
15+ href: "#",
16+ text: "Section"
17+ }
18+ ],
19+ href: "#",
20+ text: "Subsection"
21+ }) }}
22+ {% endblock %}
23+
24+ {% block content %}
25+ < div class ="nhsuk-grid-row ">
26+ < div class ="nhsuk-grid-column-two-thirds ">
27+
28+ < h1 > Service name goes here</ h1 >
29+ < p > Use this service to do something.</ p >
30+ < p > You can use this service if you:</ p >
31+ < ul >
32+ < li > live in England</ li >
33+ < li > need to get a thing</ li >
34+ < li > need to change a thing</ li >
35+ </ ul >
36+
37+ < h2 > Before you start</ h2 >
38+
39+ < p > We'll ask you for: ...</ p >
40+
41+ {{ button({
42+ text: "Start now",
43+ href: "#"
44+ }) }}
45+
46+ < p > By using this service you are agreeing to our < a href ="# "> terms of use</ a > and < a href ="# "> privacy policy</ a > .</ p >
47+
48+ </ div >
49+ </ div >
50+ {% endblock %}
You can’t perform that action at this time.
0 commit comments