1
0
mirror of https://github.com/thangisme/notes.git synced 2024-07-26 23:24:22 -04:00
notes/_includes/head.html

29 lines
902 B
HTML
Raw Normal View History

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