krata/_includes/head.html

94 lines
3.0 KiB
HTML
Raw Normal View History

2019-09-30 14:38:41 +02:00
<!--
The Head
-->
<head>
<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 19:24:32 +01:00
<!-- Allow having a localized datetime different from the appearance language -->
{% if site.prefer_datetime_locale %}
<meta name="prefer-datetime-locale" content="{{ site.prefer_datetime_locale }}">
{% endif %}
2021-01-23 08:07:18 +01:00
{% if page.layout == 'home' or page.layout == 'post' %}
2021-07-20 19:01:09 +02:00
{% if site.google_analytics.pv.proxy_endpoint %}
<meta name="pv-proxy-endpoint" content="{{ site.google_analytics.pv.proxy_endpoint }}">
{% endif %}
2021-01-23 08:07:18 +01: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 08:07:18 +01:00
{% endif %}
2021-01-23 08:07:18 +01:00
{% endif %}
2020-10-25 19:24:32 +01:00
{% seo title=false %}
2019-09-30 14:38:41 +02:00
<title>
{%- unless page.layout == "home" -%}
{{ page.title | append: " | "}}
{%- endunless -%}
{{ site.title }}
2019-09-30 14:38:41 +02:00
</title>
{% include favicons.html %}
{% if site.resources.ignore_env != jekyll.environment and site.resources.self_hosted %}
<link href="{{ site.data.assets[origin].webfonts | relative_url }}" rel="stylesheet">
{% else %}
{% for cdn in site.data.assets[origin].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.assets[origin].webfonts }}">
{% endif %}
2019-11-25 13:56:50 +01:00
<!-- GA -->
{% if jekyll.environment == 'production'
and site.google_analytics.id != empty and site.google_analytics.id %}
2019-11-25 13:56:50 +01: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">
{% 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 13:56:50 +01:00
{% endif %}
{% endif %}
<!-- Bootstrap -->
<link rel="stylesheet" href="{{ site.data.assets[origin].bootstrap.css }}">
2020-05-26 11:49:50 +02:00
<!-- Font Awesome -->
<link rel="stylesheet" href="{{ site.data.assets[origin].fontawesome.css }}">
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
2019-09-30 14:38:41 +02:00
{% if site.toc and page.toc %}
<link rel="stylesheet" href="{{ site.data.assets[origin].bootstrap-toc.css }}">
{% endif %}
{% if page.layout == 'page' or page.layout == 'post' %}
<!-- Manific Popup -->
<link rel="stylesheet" href="{{ site.data.assets[origin].magnific-popup.css }}">
{% endif %}
2021-07-01 10:20:36 +02:00
<!-- JavaScript -->
2019-09-30 14:38:41 +02:00
<script src="{{ site.data.assets[origin].jquery.js }}"></script>
2019-09-30 14:38:41 +02:00
{% unless site.theme_mode %}
{% include mode-toggle.html %}
{% endunless %}
2020-10-25 19:24:32 +01:00
</head>