@nationalarchives/frontend 0.8.1 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/govuk-prototype-kit.config.json +5 -0
- package/nationalarchives/all+analytics.js +1 -1
- package/nationalarchives/all+analytics.js.map +1 -1
- package/nationalarchives/all.css +1 -1
- package/nationalarchives/all.css.map +1 -1
- package/nationalarchives/all.js +1 -1
- package/nationalarchives/all.js.map +1 -1
- package/nationalarchives/analytics.js +1 -1
- package/nationalarchives/analytics.js.map +1 -1
- package/nationalarchives/components/cookie-banner/cookie-banner.js +1 -1
- package/nationalarchives/components/cookie-banner/cookie-banner.js.map +1 -1
- package/nationalarchives/components/cookie-banner/cookie-banner.mjs +9 -13
- package/nationalarchives/components/cookie-banner/fixtures.json +10 -19
- package/nationalarchives/components/cookie-banner/macro-options.json +0 -6
- package/nationalarchives/components/cookie-banner/template.njk +1 -1
- package/nationalarchives/components/footer/footer.js +1 -1
- package/nationalarchives/components/footer/footer.js.map +1 -1
- package/nationalarchives/components/text-input/text-input.js +1 -1
- package/nationalarchives/components/text-input/text-input.js.map +1 -1
- package/nationalarchives/components/text-input/text-input.mjs +2 -2
- package/nationalarchives/lib/cookies.mjs +10 -11
- package/nationalarchives/prototype-kit.css +1 -1
- package/nationalarchives/prototype-kit.css.map +1 -1
- package/nationalarchives/templates/error-page-not-found.njk +20 -0
- package/nationalarchives/templates/fixtures.json +11 -5
- package/nationalarchives/templates/layouts/_prototype-kit.njk +1 -1
- package/nationalarchives/utilities/_reset.scss +15 -0
- package/package.json +12 -12
@@ -0,0 +1,20 @@
|
|
1
|
+
{% extends 'nationalarchives/templates/layouts/_prototype-kit.njk' %}
|
2
|
+
|
3
|
+
{% set pageTitle = 'Page not found' %}
|
4
|
+
{% set theme = 'light' %}
|
5
|
+
{% set themeAccent = 'blue' %}
|
6
|
+
|
7
|
+
{% block content %}
|
8
|
+
<div class="tna-section">
|
9
|
+
<div class="tna-container">
|
10
|
+
<div class="tna-column tna-column--width-2-3 tna-column--width-5-6-medium tna-column--full-small tna-column--full-tiny">
|
11
|
+
<h1 class="tna-heading-xl">
|
12
|
+
{{ pageTitle }}
|
13
|
+
</h1>
|
14
|
+
<p>If you typed the web address, check it is correct.</p>
|
15
|
+
<p>If you pasted the web address, check you copied the entire address.</p>
|
16
|
+
<p>If the web address is correct or you selected a link or button, <a href="https://www.nationalarchives.gov.uk/contact-us/">contact us</a> to let us help.</p>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
{% endblock %}
|