2023-06-02 16:17:07 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<!-- mobile responsive meta -->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
|
|
|
|
|
|
|
{{ "<!-- Themify -->" | safeHTML }}
|
|
|
|
<link rel="stylesheet" href="{{ "themify/themify.css" | absURL }}">
|
|
|
|
|
|
|
|
{{ "<!-- Critical CSS -->" | safeHTML }}
|
|
|
|
{{ $stylex := resources.Get "scss/critical.scss" | resources.ToCSS | minify }}
|
|
|
|
<link href="{{ $stylex.Permalink }}" rel="stylesheet" />
|
|
|
|
|
|
|
|
{{ "<!--Favicon-->" | safeHTML }}
|
|
|
|
<link rel="shortcut icon" href="{{ "images/favicon.png" | absURL }}" type="image/x-icon" />
|
|
|
|
<link rel="icon" href="{{ "images/favicon.png" | absURL }}" type="image/x-icon" />
|
|
|
|
{{ with site.Params.googleAnalytics }}
|
|
|
|
{{ "<!-- Google Analytics -->" | safeHTML }}
|
|
|
|
{{ end }}
|
2023-09-07 17:14:37 +00:00
|
|
|
|
|
|
|
<!-- Plausible script -->
|
2023-06-06 11:25:06 +00:00
|
|
|
<script defer data-domain="federated.computer" src="https://plausible.io/js/script.js">
|
|
|
|
</script>
|
2023-09-07 17:14:37 +00:00
|
|
|
|
|
|
|
<!-- Google tag (gtag.js) -->
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YSN716P0XR"></script>
|
2023-06-20 21:25:00 +00:00
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
2023-09-07 17:14:37 +00:00
|
|
|
gtag('config', 'G-YSN716P0XR');
|
2023-06-20 21:25:00 +00:00
|
|
|
</script>
|
2023-08-01 18:36:41 +00:00
|
|
|
|
2023-08-30 14:57:09 +00:00
|
|
|
<!-- FreeScout BEGIN -->
|
|
|
|
<script>var FreeScoutW={s:{"color":"#0068bd","position":"br","id":401123151}};(function(d,e,s){if(d.getElementById("freescout-w"))return;a=d.createElement(e);m=d.getElementsByTagName(e)[0];a.async=1;a.id="freescout-w";a.src=s;m.parentNode.insertBefore(a, m)})(document,"script","https://support.federated.computer/modules/chat/js/widget.js?v=3115");</script>
|
|
|
|
<!-- FreeScout END -->
|
2023-08-01 18:36:41 +00:00
|
|
|
|
|
|
|
|
2023-06-02 16:17:07 +00:00
|
|
|
</head>
|