119 lines
4.1 KiB
HTML
119 lines
4.1 KiB
HTML
<!-- The Head -->
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f7f7f7">
|
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1b1b1e">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no initial-scale=1, shrink-to-fit=no, viewport-fit=cover">
|
|
|
|
{% capture seo_tags %}
|
|
{% seo title=false %}
|
|
{% endcapture %}
|
|
|
|
{% if page.image %}
|
|
{% assign img = page.image.path | default: page.image %}
|
|
|
|
{% unless img contains '://' %}
|
|
{% assign img_path = page.img_path | append: '/' | append: img | replace: '//', '/' %}
|
|
{% capture target %}"{{ img | absolute_url }}"{% endcapture %}
|
|
|
|
{% if site.img_cdn contains '//' %}
|
|
<!-- it's a cross-origin URL -->
|
|
{% capture replacement %}"{{ site.img_cdn }}{{ img_path }}"{% endcapture %}
|
|
{% else %}
|
|
<!-- it's a local file path -->
|
|
{%- capture replacement -%}
|
|
"{{ site.img_cdn | append: '/' | append: img_path | replace: '//', '/' | absolute_url }}"
|
|
{%- endcapture -%}
|
|
{% endif %}
|
|
|
|
{% assign seo_tags = seo_tags | replace: target, replacement %}
|
|
{% endunless %}
|
|
{% endif %}
|
|
|
|
{{ seo_tags }}
|
|
|
|
<title>
|
|
{%- unless page.layout == 'home' -%}
|
|
{{ page.title | append: ' | ' }}
|
|
{%- endunless -%}
|
|
{{ site.title }}
|
|
</title>
|
|
|
|
{% include_cached favicons.html %}
|
|
|
|
{% if site.resources.ignore_env != jekyll.environment and site.resources.self_hosted %}
|
|
<link href="{{ site.data.origin[type].webfonts | relative_url }}" rel="stylesheet">
|
|
|
|
{% else %}
|
|
{% for cdn in site.data.origin[type].cdns %}
|
|
<link rel="preconnect" href="{{ cdn.url }}" {{ cdn.args }}>
|
|
<link rel="dns-prefetch" href="{{ cdn.url }}" {{ cdn.args }}>
|
|
{% endfor %}
|
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].webfonts | relative_url }}">
|
|
{% endif %}
|
|
|
|
<!-- GA -->
|
|
{% if jekyll.environment == 'production' and site.google_analytics.id != empty and site.google_analytics.id %}
|
|
<link rel="preconnect" href="https://www.google-analytics.com" crossorigin="use-credentials">
|
|
<link rel="dns-prefetch" href="https://www.google-analytics.com">
|
|
|
|
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin="anonymous">
|
|
<link rel="dns-prefetch" href="https://www.googletagmanager.com">
|
|
{% endif %}
|
|
|
|
<!-- Bootstrap -->
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].bootstrap.css | relative_url}}">
|
|
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].fontawesome.css | relative_url }}">
|
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
|
|
|
|
{% if site.toc and page.toc %}
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].toc.css | relative_url }}">
|
|
{% endif %}
|
|
|
|
{% if page.layout == 'page' or page.layout == 'post' %}
|
|
<!-- Manific Popup -->
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].magnific-popup.css | relative_url }}">
|
|
{% endif %}
|
|
|
|
<!-- JavaScript -->
|
|
<script>
|
|
var serviceUrl = "{{site.custom-config.blog-services.service_url}}";
|
|
var siteId = "{{site.id}}";
|
|
var postId = "{{page.title}}";
|
|
var remark42Host = "{{ site.comments.remark42.host }}";
|
|
|
|
function ajax(url) {
|
|
return new Promise(function (resolve, reject) {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.onload = function () {
|
|
resolve(this.responseText);
|
|
};
|
|
xhr.onerror = reject;
|
|
xhr.open('GET', url);
|
|
xhr.send();
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<!-- Google Tag Manager -->
|
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
|
})(window,document,'script','dataLayer','GTM-W4PKSB86');</script>
|
|
<!-- End Google Tag Manager -->
|
|
|
|
{% unless site.theme_mode %}
|
|
{% include mode-toggle.html %}
|
|
{% endunless %}
|
|
|
|
{% include metadata-hook.html %}
|
|
</head> |