krata/_includes/head.html

75 lines
2.6 KiB
HTML
Raw Normal View History

2019-09-30 14:38:41 +02:00
<!--
The Head
2020-01-02 14:17:49 +01:00
v2.0
https://github.com/cotes2020/jekyll-theme-chirpy
2019-09-30 14:38:41 +02:00
© 2017-2019 Cotes Chung
MIT License
-->
<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">
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>
{% seo title=false %}
{% include favicons.html %}
<!-- Google Fonts -->
2019-11-25 13:56:50 +01:00
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<!-- GA -->
2019-11-25 13:56:50 +01: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">
2020-04-01 14:33:49 +02:00
{% if site.google_analytics.pv.proxy_url and site.google_analytics.pv.enabled %}
<link rel="preconnect" href="{{ site.google_analytics.pv.proxy_url }}" crossorigin="use-credentials">
<link rel="dns-prefetch" href="{{ site.google_analytics.pv.proxy_url }}">
2019-11-25 13:56:50 +01:00
{% endif %}
{% endif %}
<!-- jsDelivr CDN -->
2019-11-25 13:56:50 +01:00
<link rel="preconnect" href="cdn.jsdelivr.net">
<link rel="dns-prefetch" href="cdn.jsdelivr.net">
<!-- Bootstrap -->
2020-01-10 19:44:30 +01:00
<link rel="preload" as="style"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha256-LA89z+k9fjgMKQ/kq4OO2Mrf8VltYml/VES+Rg0fh20=" crossorigin>
2020-05-26 11:49:50 +02:00
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha256-LA89z+k9fjgMKQ/kq4OO2Mrf8VltYml/VES+Rg0fh20=" crossorigin="anonymous">
<!-- Font Awesome -->
2019-09-30 14:38:41 +02:00
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.11.2/css/all.min.css"
integrity="sha256-+N4/V/SbAFiW1MPBCXnfnP9QSN3+Keu+NlB+0ev/YKQ="
crossorigin="anonymous">
2020-05-29 19:30:50 +02:00
{% include css-selector.html %}
<!-- JavaScripts -->
2019-09-30 14:38:41 +02:00
<link rel="preload" as="script" href="https://cdn.jsdelivr.net/npm/jquery@3.4.1"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous">
2019-09-30 14:38:41 +02:00
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
2019-09-30 14:38:41 +02:00
<script src="https://cdn.jsdelivr.net/combine/npm/popper.js@1.15.0,npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" async></script>
{% include js-selector.html %}
2020-05-09 18:28:18 +02:00
2019-09-30 14:38:41 +02:00
</head>