-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/record-serialisation
- Loading branch information
Showing
57 changed files
with
1,402 additions
and
1,552 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,12 +45,12 @@ | |
<link rel="preconnect" href="https://use.typekit.net"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:[email protected]&family=Roboto+Mono:[email protected]&display=swap"> --> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='main.css', v=app_config.BUILD_VERSION) }}" media="screen,print"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='print.css', v=app_config.BUILD_VERSION) }}" media="print"> | ||
<link rel="stylesheet" href="https://use.typekit.net/kaq6qqh.css" media="screen,print"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}" media="screen,print"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='print.css') }}" media="print"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='font-awesome.css') }}" media="screen,print"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='ie.css') }}" media="all and (-ms-high-contrast: none), (-ms-high-contrast: active)"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:[email protected]&family=Roboto+Mono:[email protected]&display=swap" media="screen,print"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='font-awesome.css', v=app_config.BUILD_VERSION) }}" media="screen,print"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='ie.css', v=app_config.BUILD_VERSION) }}" media="all and (-ms-high-contrast: none), (-ms-high-contrast: active)"> | ||
<!-- <link rel="stylesheet" href="{{ url_for('static', filename='logo-versions.css') }}" media="screen"> --> | ||
{% endblock %} | ||
|
||
|
@@ -59,7 +59,7 @@ | |
{%- if 'cookie_preferences_set' not in request.cookies or not request.cookies.get('cookie_preferences_set') %} | ||
{{ tnaCookieBanner({ | ||
'serviceName': 'The National Archives', | ||
'cookiesUrl': '/cookies/', | ||
'cookiesUrl': '/help/cookies/', | ||
'cookiesDomain': app_config.COOKIE_DOMAIN, | ||
'policies': 'marketing' | ||
}) | indent(6) }} | ||
|
@@ -124,7 +124,7 @@ | |
{% block beforeContent %} | ||
{%- if breadcrumbs and breadcrumbs | length > 0 %} | ||
<div class="tna-container"> | ||
<div class="tna-column tna-column--full"> | ||
<div class="tna-column tna-column--full tna-!--padding-vertical-s"> | ||
{{ tnaBreadcrumbs({ | ||
'items': breadcrumbs, | ||
'structuredData': True | ||
|
@@ -266,7 +266,7 @@ | |
}, | ||
{ | ||
'text': 'Cookies', | ||
'href': '/cookies/' | ||
'href': '/help/cookies/' | ||
} | ||
], | ||
'classes': 'tna-!--margin-top-l' | ||
|
@@ -275,8 +275,8 @@ | |
|
||
{% block bodyEnd %} | ||
{%- if app_config.SENTRY_JS_ID and cookie_preference('usage') %} | ||
<script src="{{ url_for('static', filename='sentry.min.js') }}" data-id="{{ app_config.SENTRY_JS_ID }}" data-samplerate="{{ app_config.SENTRY_SAMPLE_RATE }}" data-environment="{{ app_config.ENVIRONMENT }}" data-version="{{ app_config.BUILD_VERSION }}" defer></script> | ||
<script src="{{ url_for('static', filename='sentry.min.js', v=app_config.BUILD_VERSION) }}" data-id="{{ app_config.SENTRY_JS_ID }}" data-samplerate="{{ app_config.SENTRY_SAMPLE_RATE }}" data-environment="{{ app_config.ENVIRONMENT }}" data-version="{{ app_config.BUILD_VERSION }}" defer></script> | ||
{%- endif %} | ||
<script src="{{ url_for('static', filename='main.min.js') }}" defer></script> | ||
<script src="{{ url_for('static', filename='analytics.min.js') }}" defer></script> | ||
<script src="{{ url_for('static', filename='main.min.js', v=app_config.BUILD_VERSION) }}" defer></script> | ||
<script src="{{ url_for('static', filename='analytics.min.js', v=app_config.BUILD_VERSION) }}" defer></script> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.