-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhead.html
16 lines (16 loc) · 1009 Bytes
/
head.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% load static %}
<head>
<meta charset="utf-8">
<title>GOV.UK - Customised page template</title>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="theme-color" content="blue">
<link rel="icon" sizes="48x48" href="{% static 'assets/images/favicon.ico' %}">
<link rel="icon" sizes="any" href="{% static 'assets/images/favicon.svg' %}" type="image/svg+xml">
<link rel="mask-icon" href="{% static 'assets/images/govuk-icon-mask.svg' %}" color="blue">
<link rel="apple-touch-icon" href="{% static 'assets/images/govuk-icon-180.png' %}">
<link rel="manifest" href="{% static 'assets/manifest.json' %}">
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/search.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/base.css' %}">
<script src="https://unpkg.com/htmx.org@1.7.0/dist/htmx.js"></script>
<meta property="og:image" content="{% static 'assets/images/govuk-opengraph-image.png' %}">
</head>