2023-03-16 20:17:06 +03:00
|
|
|
<!-- The Head -->
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
|
|
<head>
|
2020-01-08 21:48:57 +03:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
2023-03-16 20:17:06 +03:00
|
|
|
<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"
|
|
|
|
>
|
2020-10-25 21:24:32 +03:00
|
|
|
|
2022-03-16 14:43:23 +03:00
|
|
|
{% capture seo_tags %}
|
|
|
|
{% seo title=false %}
|
|
|
|
{% endcapture %}
|
|
|
|
|
2022-11-18 17:16:35 +03:00
|
|
|
{% if page.image %}
|
|
|
|
{% assign img = page.image.path | default: page.image %}
|
2022-11-17 02:31:05 +03:00
|
|
|
|
2022-12-15 17:55:52 +03:00
|
|
|
{% 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 %}
|
2022-03-16 14:43:23 +03:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{{ seo_tags }}
|
2020-01-08 21:48:57 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
<title>
|
2023-03-16 20:17:06 +03:00
|
|
|
{%- unless page.layout == 'home' -%}
|
|
|
|
{{ page.title | append: ' | ' }}
|
|
|
|
{%- endunless -%}
|
2020-05-29 19:48:10 +03:00
|
|
|
{{ site.title }}
|
2019-09-30 15:38:41 +03:00
|
|
|
</title>
|
|
|
|
|
2023-06-19 09:41:40 +03:00
|
|
|
{% include_cached favicons.html %}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2022-02-09 17:32:50 +03:00
|
|
|
{% if site.resources.ignore_env != jekyll.environment and site.resources.self_hosted %}
|
2023-03-31 01:41:51 +03:00
|
|
|
<link href="{{ site.data.origin[type].webfonts | relative_url }}" rel="stylesheet">
|
2022-02-09 17:32:50 +03:00
|
|
|
|
|
|
|
{% else %}
|
2023-03-31 01:41:51 +03:00
|
|
|
{% for cdn in site.data.origin[type].cdns %}
|
2022-02-09 17:32:50 +03:00
|
|
|
<link rel="preconnect" href="{{ cdn.url }}" {{ cdn.args }}>
|
|
|
|
<link rel="dns-prefetch" href="{{ cdn.url }}" {{ cdn.args }}>
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-03-31 01:41:51 +03:00
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].webfonts | relative_url }}">
|
2022-02-09 17:32:50 +03:00
|
|
|
{% endif %}
|
2019-11-25 15:56:50 +03:00
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- GA -->
|
2023-03-16 20:17:06 +03:00
|
|
|
{% if jekyll.environment == 'production' and site.google_analytics.id != empty and site.google_analytics.id %}
|
2019-11-25 15:56:50 +03:00
|
|
|
<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 %}
|
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- Bootstrap -->
|
2023-03-31 01:41:51 +03:00
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].bootstrap.css | relative_url}}">
|
2020-05-26 12:49:50 +03:00
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- Font Awesome -->
|
2023-03-31 01:41:51 +03:00
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].fontawesome.css | relative_url }}">
|
2022-02-09 17:32:50 +03:00
|
|
|
|
2023-09-10 10:25:15 +03:00
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/:THEME.css' | replace: ':THEME', site.theme | relative_url }}">
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2022-02-09 17:32:50 +03:00
|
|
|
{% if site.toc and page.toc %}
|
2023-03-31 01:41:51 +03:00
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].toc.css | relative_url }}">
|
2022-02-09 17:32:50 +03:00
|
|
|
{% endif %}
|
|
|
|
|
2023-09-26 23:44:32 +03:00
|
|
|
{% if page.layout == 'post' or page.layout == 'page' or page.layout == 'home' %}
|
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type]['lazy-polyfill'].css | relative_url }}">
|
|
|
|
{% endif %}
|
|
|
|
|
2022-02-09 17:32:50 +03:00
|
|
|
{% if page.layout == 'page' or page.layout == 'post' %}
|
|
|
|
<!-- Manific Popup -->
|
2023-03-31 01:41:51 +03:00
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].magnific-popup.css | relative_url }}">
|
2022-02-09 17:32:50 +03:00
|
|
|
{% endif %}
|
2020-05-03 22:52:23 +03:00
|
|
|
|
2021-07-01 11:20:36 +03:00
|
|
|
<!-- JavaScript -->
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2022-03-03 15:54:44 +03:00
|
|
|
{% unless site.theme_mode %}
|
|
|
|
{% include mode-toggle.html %}
|
|
|
|
{% endunless %}
|
2023-05-03 14:04:18 +03:00
|
|
|
|
|
|
|
{% include metadata-hook.html %}
|
2020-10-25 21:24:32 +03:00
|
|
|
</head>
|