124 lines
4.3 KiB
HTML
124 lines
4.3 KiB
HTML
{% set cloudiBase = 'https://res.cloudinary.com/brycewray-com/image/upload/' %}
|
|
{% set xFmPart1 = 'f_auto,q_auto:eco,w_' %}
|
|
{% set xFmPart2 = ',x_0,z_1/' %}
|
|
{% set fallbackImg = 'typewriter-monochrome_2242164_6260x4374.jpg' %}
|
|
{% set zolaVer = '0.13.0' %}
|
|
|
|
<head>
|
|
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
|
|
{% block title %}
|
|
<title>{{ config.title }}</title>
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:site_name" content="{{ config.base_url }}" />
|
|
|
|
{% if section.title %}
|
|
<title>{{ section.title }}</title>
|
|
<meta property="og:title" content="{{ section.title }}" />
|
|
{% elif page.title %}
|
|
<title>{{ page.title }}</title>
|
|
<meta property="og:title" content="{{ page.title }}" />
|
|
{%endif%}
|
|
|
|
{%if section.extra.imgPath %}
|
|
<meta name="image" content="{{section.permalink}}{{ section.extra.imgPath }}" />
|
|
<meta property="og:image" content="{{section.permalink}}{{ section.extra.imgPath }}" />
|
|
<meta property="twitter:image" content="{{section.permalink}}{{ section.extra.imgPath }}" />
|
|
{% elif page.extra.imgPath %}
|
|
<meta name="image" content="{{page.permalink}}{{ page.extra.imgPath }}" />
|
|
<meta property="og:image" content="{{page.permalink}}{{ page.extra.imgPath }}" />
|
|
<meta property="twitter:image" content="{{page.permalink}}{{ page.extra.imgPath }}" />
|
|
{%endif%}
|
|
|
|
{%if section.description%}
|
|
<meta name="description" content="{{ section.description }}" />
|
|
<meta property="og:description" content="{{ section.description }}" />
|
|
<meta property="twitter:description" content="{{ section.description }}" />
|
|
{%elif page.description%}
|
|
<meta name="description" content="{{ page.description }}" />
|
|
<meta property="og:description" content="{{ page.description }}" />
|
|
<meta property="twitter:description" content="{{ page.description }}" />
|
|
{%endif%}
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
|
|
{% endblock title %}
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/brands.min.css" />
|
|
|
|
<!-- Matomo Tag Manager -->
|
|
<script>
|
|
var _mtm = window._mtm = window._mtm || [];
|
|
_mtm.push({'mtm.startTime': (new Date().getTime()), 'event': 'mtm.Start'});
|
|
(function() {
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.async=true; g.src='https://analytics.threefold.io/js/container_LOx26c3V.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<!-- End Matomo Tag Manager -->
|
|
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- **** BEGINNING, favicons **** -->
|
|
|
|
<!-- generics -->
|
|
|
|
<!-- iOS -->
|
|
|
|
<!-- Android -->
|
|
|
|
<!-- Windows 8, IE 10 -->
|
|
|
|
<!-- Windows 8.1 and up, IE 11 -->
|
|
|
|
<!-- **** CONCLUSION, favicons **** -->
|
|
|
|
<!-- Matomo -->
|
|
<script>
|
|
var _paq = window._paq = window._paq || [];
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="//analytics.threefold.io/";
|
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
|
_paq.push(['setSiteId', '18']);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<!-- End Matomo Code -->
|
|
|
|
<!-- CSS/SCSS -->
|
|
<link rel="stylesheet" href="{{ get_url(path="css/index.css", trailing_slash=false, cachebust=true) | safe }}" />
|
|
<style>
|
|
.space-x-10>:not([hidden])~:not([hidden]){
|
|
margin-left: calc(1.5rem*calc(1 - var(--tw-space-x-reverse)))!important;
|
|
}
|
|
@-moz-document url-prefix() {
|
|
.lazy:-moz-loading {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
|
|
.ieOnly {
|
|
display: none;
|
|
}
|
|
|
|
@media all and (-ms-high-contrast: none),
|
|
(-ms-high-contrast: active) {
|
|
.ieOnly {
|
|
display: block;
|
|
}
|
|
}
|
|
@media (min-width: 640px){
|
|
.sm\:space-x-4>:not([hidden])~:not([hidden]){
|
|
margin-left: calc(2rem*calc(1 - var(--tw-space-x-reverse)))!important;
|
|
}
|
|
}
|
|
</style>
|
|
<script type='text/javascript'
|
|
src='https://platform-api.sharethis.com/js/sharethis.js#property=62556aac80366d0019fc1af2&product=sop'
|
|
async='async'></script>
|
|
</head> |