notes/_includes/head.html

29 lines
1017 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 }}">
2019-02-02 20:32:04 +00:00
{% if site.ga_tracking != nil %}
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', '{{ site.ga_tracking }}', '{{ site.url }}');
ga('send', 'pageview');
2019-02-02 20:32:04 +00:00
</script>
<script async src="https://www.google-analytics.com/analytics.js"></script>
2019-02-02 20:32:04 +00:00
{% endif %}
{% if site.search_enabled != nil %}
2019-02-02 20:32:04 +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">
2019-02-28 06:10:48 +00:00
{% seo %}
2017-03-09 18:16:08 +00:00
</head>