mirror of
https://github.com/thangisme/notes.git
synced 2024-10-13 06:13:34 -04:00
29 lines
902 B
HTML
29 lines
902 B
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
|
|
{% unless site.plugins contains "jekyll-seo-tag" %}
|
|
<title>{{ page.title }} - {{ site.title }}</title>
|
|
|
|
{% if page.description %}
|
|
<meta name="Description" content="{{ page.description }}">
|
|
{% endif %}
|
|
{% endunless %}
|
|
|
|
<link rel="shortcut icon" href="{{ 'favicon.ico' | relative_url }}" type="image/x-icon">
|
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-default.css' | relative_url }}">
|
|
|
|
{% if site.search_enabled != false %}
|
|
<script type="text/javascript" src="{{ '/assets/js/vendor/lunr.min.js' | relative_url }}"></script>
|
|
{% endif %}
|
|
<script type="text/javascript" src="{{ '/assets/js/just-the-docs.js' | relative_url }}"></script>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% seo %}
|
|
|
|
{% include head_custom.html %}
|
|
|
|
</head>
|