mirror of
https://github.com/thangisme/notes.git
synced 2024-12-21 11:06:27 -05:00
f61b836f6e
(cherry picked from commit ac42a41ae3e36b002df52882be296c01873c0e5b)
46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
|
|
{% if site.plugins.jekyll-seo == nil %}
|
|
<title>{{ page.title }} - {{ site.title }}</title>
|
|
|
|
{% if page.description %}
|
|
<meta name="Description" content="{{ page.description }}">
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<link rel="shortcut icon" href="{{ 'favicon.ico' | absolute_url }}" type="image/x-icon">
|
|
|
|
{% if site.color_scheme == nil or site.color_scheme == "nil" %}
|
|
{% assign color_scheme = 'light' %}
|
|
{% else %}
|
|
{% assign color_scheme = site.color_scheme %}
|
|
{% endif %}
|
|
<link rel="stylesheet" href="{{ color_scheme | prepend: '/assets/css/just-the-docs-' | append: '.css' | absolute_url }}">
|
|
|
|
{% if site.ga_tracking != nil %}
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.ga_tracking }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', "{{ site.ga_tracking }}");
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
{% if site.search_enabled != false %}
|
|
<script type="text/javascript" src="{{ '/assets/js/vendor/lunr.min.js' | absolute_url }}"></script>
|
|
{% endif %}
|
|
<script type="text/javascript" src="{{ '/assets/js/just-the-docs.js' | absolute_url }}"></script>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% seo %}
|
|
|
|
{% include head_custom.html %}
|
|
|
|
</head>
|