Skip to content

Commit 6792b35

Browse files
Update page.njk
1 parent 924802a commit 6792b35

File tree

1 file changed

+20
-11
lines changed
  • packages/tel-frontend-review/src/layouts

1 file changed

+20
-11
lines changed

packages/tel-frontend-review/src/layouts/page.njk

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,36 @@
33
<head>
44
<meta charset="utf-8">
55
<title>{{ title or "TEL Frontend" }}</title>
6+
7+
{# NHS UK precompiled CSS #}
68
<link rel="stylesheet" href="/tel-frontend/stylesheets/nhsuk.min.css">
9+
10+
{# TEL frontend compiled CSS #}
711
<link rel="stylesheet" href="/tel-frontend/stylesheets/tel-frontend.css">
8-
{% set baseurl = "/tel-frontend" %}
9-
<link rel="stylesheet" href="{{ baseurl }}/stylesheets/review.css">
12+
13+
{# Review site styling (examples etc) #}
14+
<link rel="stylesheet" href="/tel-frontend/stylesheets/review.css">
1015
</head>
1116
<body class="nhsuk-body">
1217

13-
<header class="nhsuk-hero nhsuk-u-padding-top-3 nhsuk-u-padding-bottom-6">
14-
<div class="nhsuk-width-container">
15-
<h1 class="nhsuk-hero__heading nhsuk-heading-l nhsuk-u-margin-bottom-3">
16-
TEL Frontend Review
17-
</h1>
18-
19-
{% block header %}{% endblock %}
20-
</div>
21-
</header>
18+
<header class="nhsuk-hero nhsuk-u-padding-top-3 nhsuk-u-padding-bottom-6">
19+
<div class="nhsuk-width-container">
20+
<h1 class="nhsuk-hero__heading nhsuk-heading-l nhsuk-u-margin-bottom-3">
21+
TEL Frontend Review
22+
</h1>
2223

24+
{% block header %}{% endblock %}
25+
</div>
26+
</header>
2327

2428
<main class="nhsuk-main-wrapper nhsuk-width-container nhsuk-u-margin-top-4">
2529
{% block content %}{% endblock %}
2630
</main>
2731

32+
{# NHS UK frontend JS #}
33+
<script src="/tel-frontend/javascripts/nhsuk.min.js"></script>
34+
35+
{# TEL frontend JS #}
36+
<script src="/tel-frontend/javascripts/tel-frontend.min.js"></script>
2837
</body>
2938
</html>

0 commit comments

Comments
 (0)