2019-09-30 15:38:41 +03:00
|
|
|
<!--
|
|
|
|
The Head
|
|
|
|
-->
|
|
|
|
|
|
|
|
<head>
|
2020-01-08 21:48:57 +03:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2020-10-25 21:24:32 +03:00
|
|
|
|
2021-01-23 10:07:18 +03:00
|
|
|
{% if page.layout == 'home' or page.layout == 'post' %}
|
|
|
|
|
2021-08-01 16:54:27 +03:00
|
|
|
<!-- i18n for `_javascript/utils/timeago.js` -->
|
|
|
|
<meta name="day-prompt" content="{{ site.data.locales[lang].post.timeago.day }}">
|
|
|
|
<meta name="hour-prompt" content="{{ site.data.locales[lang].post.timeago.hour }}">
|
|
|
|
<meta name="minute-prompt" content="{{ site.data.locales[lang].post.timeago.minute }}">
|
|
|
|
<meta name="justnow-prompt" content="{{ site.data.locales[lang].post.timeago.just_now }}">
|
2021-07-20 20:01:09 +03:00
|
|
|
|
2021-04-06 09:05:55 +03:00
|
|
|
{% if site.google_analytics.pv.proxy_endpoint %}
|
|
|
|
<meta name="pv-proxy-endpoint" content="{{ site.google_analytics.pv.proxy_endpoint }}">
|
|
|
|
{% endif %}
|
2021-01-23 10:07:18 +03:00
|
|
|
|
2021-04-06 09:05:55 +03:00
|
|
|
{% if site.google_analytics.pv.cache_path %}
|
|
|
|
<meta name="pv-cache-path" content="{{ site.google_analytics.pv.cache_path | relative_url }}">
|
2021-01-23 10:07:18 +03:00
|
|
|
{% endif %}
|
2021-04-05 20:04:09 +03:00
|
|
|
|
2021-01-23 10:07:18 +03:00
|
|
|
{% endif %}
|
|
|
|
|
2020-10-25 21:24:32 +03:00
|
|
|
{% seo title=false %}
|
2020-01-08 21:48:57 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
<title>
|
2020-05-29 19:48:10 +03:00
|
|
|
{%- unless page.layout == "home" -%}
|
|
|
|
{{ page.title | append: " | "}}
|
|
|
|
{%- endunless -%}
|
|
|
|
{{ site.title }}
|
2019-09-30 15:38:41 +03:00
|
|
|
</title>
|
|
|
|
|
|
|
|
{% include favicons.html %}
|
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- Google Fonts -->
|
2019-11-25 15:56:50 +03:00
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
|
|
|
|
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
|
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- GA -->
|
2019-11-25 15:56:50 +03:00
|
|
|
{% if jekyll.environment == 'production' %}
|
|
|
|
<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">
|
|
|
|
|
2021-04-06 09:05:55 +03:00
|
|
|
{% if site.google_analytics.pv.proxy_endpoint %}
|
|
|
|
{% assign proxy_url = site.google_analytics.pv.proxy_endpoint
|
|
|
|
| replace: "https://", "" | split: "/" | first | prepend: "https://" %}
|
|
|
|
|
|
|
|
<link rel="preconnect" href="{{ proxy_url }}" crossorigin="use-credentials">
|
|
|
|
<link rel="dns-prefetch" href="{{ proxy_url }}">
|
2019-11-25 15:56:50 +03:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- jsDelivr CDN -->
|
2021-04-06 18:16:02 +03:00
|
|
|
<link rel="preconnect" href="https://cdn.jsdelivr.net">
|
|
|
|
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
|
2019-11-25 15:56:50 +03:00
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- Bootstrap -->
|
2021-04-19 23:18:48 +03:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css">
|
2020-05-26 12:49:50 +03:00
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- Font Awesome -->
|
2021-04-19 23:18:48 +03:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.11.2/css/all.min.css">
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2020-05-29 20:30:50 +03:00
|
|
|
{% include css-selector.html %}
|
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
|
|
|
|
2020-10-27 23:18:54 +03:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js"></script>
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2020-10-25 21:24:32 +03:00
|
|
|
</head>
|