notes/_includes/head.html

17 lines
665 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">
{% if page.description %}
<meta name="Description" content="{{ page.description }}">
{% endif %}
2017-03-09 18:16:08 +00:00
<title>{{ page.title }} - {{ site.title }}</title>
2018-10-22 21:17:46 +00:00
<link rel="stylesheet" href="{{ "/assets/css/just-the-docs.css" | absolute_url }}">
{% if site.search_enabled != nil %}
2018-10-22 21:17:46 +00:00
<script type="text/javascript" src="{{ "/assets/js/vendor/lunr.min.js" | absolute_url }}"></script>
{% endif %}
2018-10-22 21:17:46 +00:00
<script type="text/javascript" src="{{ "/assets/js/just-the-docs.js" | absolute_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">
2017-03-09 18:16:08 +00:00
</head>