-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathhead.html
More file actions
38 lines (32 loc) · 1.65 KB
/
head.html
File metadata and controls
38 lines (32 loc) · 1.65 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{%- seo -%}
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/icon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/icon/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/icon/favicon-32x32.png" />
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}?v={{ site.time | date:'%s' }}">
<link rel="preload" href="{{ "/assets/css/tooltip.css" | relative_url }}?v={{ site.time | date:'%s' }}" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="{{ "/assets/css/tooltip.css" | relative_url }}?v={{ site.time | date:'%s' }};"></noscript>
<script> if (document.cookie.includes('logged_in=true') && window.location.href == 'https://plausible.io/') window.location.pathname = '/sites'</script>
<script
defer
data-domain="plausible.io"
src="https://plausible.io/js/script.manual.js"
></script>
<script>
window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) };
var props = {
{% if page.author %}author: "{{ page.author }}",{% endif %}
browser_language: navigator.language || navigator.userLanguage
};
window.plausible('pageview', {props: props});
window.addEventListener('pageshow', function(event) {
if (event.persisted) {
window.plausible('pageview', {props: props});
}
});
</script>
{%- feed_meta -%}
</head>