-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathredirect.html
More file actions
26 lines (25 loc) · 897 Bytes
/
redirect.html
File metadata and controls
26 lines (25 loc) · 897 Bytes
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
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<meta http-equiv="refresh" content="1;url={{ page.redirect }}"/>
<link rel="canonical" href="{{ page.redirect }}"/>
<body class="static-text">
{% include gov-banner.html %}
{% include header.html %}
{% include layout/hero.html title=page.title tag='h1' %}
<main class="container">
{% include breadcrumbs.html %}
<article>
If you are not redirected automatically, follow <a href='{{ page.redirect }}'>this link</a>.
{{ content }}
</article>
</main>
{% include footer.html %}
{% include matomo.html %}
</body>
{% include additional_css.html %}
{% include scripts.html %}
<script type="text/javascript">
window.location.href = "{{ page.redirect }}"
</script>
</html>