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
|
|
|
|
|
|
|
{% if site.plugins.jekyll-seo == nil %}
|
|
|
|
<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 %}
|
2019-01-06 15:48:58 -05:00
|
|
|
{% endif %}
|
2017-03-09 13:16:08 -05:00
|
|
|
|
2019-05-04 15:59:33 -04:00
|
|
|
<link rel="shortcut icon" href="{{ 'favicon.ico' | absolute_url }}" type="image/x-icon">
|
2019-05-13 16:40:28 -04:00
|
|
|
|
2019-05-04 15:59:33 -04:00
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs.css' | absolute_url }}">
|
2019-02-02 15:32:04 -05:00
|
|
|
|
|
|
|
{% if site.ga_tracking != nil %}
|
|
|
|
<script>
|
2019-02-02 16:59:41 -05:00
|
|
|
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 15:32:04 -05:00
|
|
|
</script>
|
2019-02-02 16:59:41 -05:00
|
|
|
<script async src="https://www.google-analytics.com/analytics.js"></script>
|
2019-02-02 15:32:04 -05:00
|
|
|
{% endif %}
|
|
|
|
|
2018-11-16 11:46:43 -05:00
|
|
|
{% if site.search_enabled != nil %}
|
2019-05-04 15:59:33 -04:00
|
|
|
<script type="text/javascript" src="{{ '/assets/js/vendor/lunr.min.js' | absolute_url }}"></script>
|
2018-11-16 11:46:43 -05:00
|
|
|
{% endif %}
|
2019-05-04 15:59:33 -04:00
|
|
|
<script type="text/javascript" src="{{ '/assets/js/just-the-docs.js' | absolute_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 %}
|
2017-03-09 13:16:08 -05:00
|
|
|
</head>
|