53 lines
2.3 KiB
HTML
53 lines
2.3 KiB
HTML
<!-- start custom head snippets -->
|
|
{% include base_path %}
|
|
<!-- insert favicons. use http://realfavicongenerator.net/ -->
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ base_path }}/images/apple-touch-icon.png?v=PYEmwKvQAx">
|
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-32x32.png?v=PYEmwKvQAx" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-194x194.png?v=PYEmwKvQAx" sizes="194x194">
|
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/android-chrome-192x192.png?v=PYEmwKvQAx" sizes="192x192">
|
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-16x16.png?v=PYEmwKvQAx" sizes="16x16">
|
|
<link rel="manifest" href="{{ base_path }}/images/manifest.json?v=PYEmwKvQAx">
|
|
<link rel="mask-icon" href="{{ base_path }}/images/safari-pinned-tab.svg?v=PYEmwKvQAx" color="#2E3440">
|
|
<link rel="shortcut icon" href="{{ base_path }}/images/favicon.ico?v=PYEmwKvQAx">
|
|
<meta name="apple-mobile-web-app-title" content="Guide">
|
|
<meta name="application-name" content="Guide">
|
|
<meta name="msapplication-TileColor" content="#2E3440">
|
|
<meta name="msapplication-TileImage" content="{{ base_path }}/images/mstile-144x144.png?v=PYEmwKvQAx">
|
|
<meta name="msapplication-config" content="{{ base_path }}/images/browserconfig.xml?v=PYEmwKvQAx">
|
|
<meta name="theme-color" content="#2E3440">
|
|
|
|
|
|
{% assign split_path = page.path | split: "/" %}
|
|
{% assign locale = split_path[1] %}
|
|
{% if locale == 'en_US' %}
|
|
{% assign locale_var = '/' %}
|
|
{% else %}
|
|
{% assign locale_var = locale | prepend:'/' | append:'/' %}
|
|
{% endif %}
|
|
{% assign top = site.data.navigation[locale].top %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" />
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
|
|
<script>
|
|
window.addEventListener("load", function(){
|
|
window.cookieconsent.initialise({
|
|
"palette": {
|
|
"popup": {
|
|
"background": "#2e3440"
|
|
},
|
|
"button": {
|
|
"background": "#60818f"
|
|
}
|
|
},
|
|
"theme": "edgeless",
|
|
"position": "top",
|
|
"static": true,
|
|
"content": {
|
|
"message": "{{ top[0].title }}"
|
|
}
|
|
})});
|
|
</script>
|
|
|
|
<script type="text/javascript" src="//cdn.thisiswaldo.com/static/js/4156.js"></script>
|
|
<!-- end custom head snippets -->
|