notes/_includes/head.html

29 lines
902 B
HTML
Raw Normal View History

2017-03-09 18:16:08 +00:00
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
2019-05-13 20:40:28 +00:00
{% unless site.plugins contains "jekyll-seo-tag" %}
2019-05-13 20:40:28 +00:00
<title>{{ page.title }} - {{ site.title }}</title>
{% if page.description %}
2019-05-04 19:59:33 +00:00
<meta name="Description" content="{{ page.description }}">
2019-05-13 20:40:28 +00:00
{% endif %}
{% endunless %}
2017-03-09 18:16:08 +00:00
2020-06-26 09:08:11 +00:00
<link rel="shortcut icon" href="{{ 'favicon.ico' | relative_url }}" type="image/x-icon">
2019-05-13 20:40:28 +00:00
2020-06-26 10:50:56 +00:00
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-default.css' | relative_url }}">
2019-02-02 20:32:04 +00:00
2019-08-14 20:43:59 +00:00
{% if site.search_enabled != false %}
2020-06-26 09:08:11 +00:00
<script type="text/javascript" src="{{ '/assets/js/vendor/lunr.min.js' | relative_url }}"></script>
{% endif %}
2020-06-26 09:08:11 +00:00
<script type="text/javascript" src="{{ '/assets/js/just-the-docs.js' | relative_url }}"></script>
2017-03-09 18:16:08 +00:00
2017-03-24 13:47:37 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-02-28 06:10:48 +00:00
{% seo %}
{% include head_custom.html %}
2019-05-10 03:08:57 +00:00
2017-03-09 18:16:08 +00:00
</head>