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">
|
2024-09-18 16:41:08 +03:00
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
2023-03-16 20:17:06 +03:00
|
|
|
<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
|
|
|
|
2024-01-10 04:04:27 +03:00
|
|
|
{%- capture seo_tags -%}
|
2022-03-16 14:43:23 +03:00
|
|
|
{% seo title=false %}
|
2024-01-10 04:04:27 +03:00
|
|
|
{%- endcapture -%}
|
|
|
|
|
|
|
|
<!-- Setup Open Graph image -->
|
2022-03-16 14:43:23 +03:00
|
|
|
|
2022-11-18 17:16:35 +03:00
|
|
|
{% if page.image %}
|
2024-01-10 04:04:27 +03:00
|
|
|
{% assign src = page.image.path | default: page.image %}
|
|
|
|
|
|
|
|
{% unless src contains '://' %}
|
|
|
|
{%- capture img_url -%}
|
2024-04-12 23:34:48 +03:00
|
|
|
{% include media-url.html src=src subpath=page.media_subpath absolute=true %}
|
2024-01-10 04:04:27 +03:00
|
|
|
{%- endcapture -%}
|
|
|
|
|
|
|
|
{%- capture old_url -%}{{ src | absolute_url }}{%- endcapture -%}
|
|
|
|
{%- capture new_url -%}{{ img_url }}{%- endcapture -%}
|
|
|
|
|
2024-01-10 21:11:25 +03:00
|
|
|
{% assign seo_tags = seo_tags | replace: old_url, new_url %}
|
2022-12-15 17:55:52 +03:00
|
|
|
{% endunless %}
|
2024-01-10 04:04:27 +03:00
|
|
|
|
|
|
|
{% elsif site.social_preview_image %}
|
|
|
|
{%- capture img_url -%}
|
2024-04-12 23:34:48 +03:00
|
|
|
{% include media-url.html src=site.social_preview_image absolute=true %}
|
2024-01-10 04:04:27 +03:00
|
|
|
{%- endcapture -%}
|
|
|
|
|
|
|
|
{%- capture og_image -%}
|
|
|
|
<meta property="og:image" content="{{ img_url }}" />
|
|
|
|
{%- endcapture -%}
|
|
|
|
|
2024-01-28 00:53:54 +03:00
|
|
|
{%- capture twitter_image -%}
|
2024-03-22 21:56:19 +03:00
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
2024-01-28 00:53:54 +03:00
|
|
|
<meta property="twitter:image" content="{{ img_url }}" />
|
|
|
|
{%- endcapture -%}
|
|
|
|
|
|
|
|
{% assign old_meta_clip = '<meta name="twitter:card" content="summary" />' %}
|
|
|
|
{% assign new_meta_clip = og_image | append: twitter_image %}
|
2024-01-10 04:04:27 +03:00
|
|
|
{% assign seo_tags = seo_tags | replace: old_meta_clip, new_meta_clip %}
|
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
|
|
|
|
2024-05-02 00:11:45 +03:00
|
|
|
<!-- Resource Hints -->
|
|
|
|
{% unless site.assets.self_host.enabled %}
|
|
|
|
{% for hint in site.data.origin.cors.resource_hints %}
|
|
|
|
{% for link in hint.links %}
|
|
|
|
<link rel="{{ link.rel }}" href="{{ hint.url }}" {{ link.opts | join: ' ' }}>
|
|
|
|
{% endfor %}
|
2022-02-09 17:32:50 +03:00
|
|
|
{% endfor %}
|
2024-05-02 00:11:45 +03:00
|
|
|
{% endunless %}
|
2019-11-25 15:56:50 +03:00
|
|
|
|
2020-05-29 19:48:10 +03:00
|
|
|
<!-- Bootstrap -->
|
2024-05-11 06:07:48 +03:00
|
|
|
{% unless jekyll.environment == 'production' %}
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
|
|
|
|
{% endunless %}
|
2020-05-26 12:49:50 +03:00
|
|
|
|
2024-05-02 00:11:45 +03:00
|
|
|
<!-- Theme style -->
|
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/:THEME.css' | replace: ':THEME', site.theme | relative_url }}">
|
|
|
|
|
|
|
|
<!-- Web Font -->
|
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].webfonts | relative_url }}">
|
|
|
|
|
|
|
|
<!-- Font Awesome Icons -->
|
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
|
|
|
|
2024-05-02 00:11:45 +03:00
|
|
|
<!-- 3rd-party Dependencies -->
|
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' %}
|
2024-04-17 01:10:01 +03:00
|
|
|
<!-- Image Popup -->
|
|
|
|
<link rel="stylesheet" href="{{ site.data.origin[type].glightbox.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>
|