<!– include head.html –> {%- comment -%}<!–
Layout of the header included in all html pages.
The favicons are generated by realfavicongenerator.net. To use your own set of favicons, visit that site, upload your favicon image and select the option that the favicons are stored inside a folder called 'icons'. The download that folder and replace the contents of the 'icons' folder with the files generated by the realfavicongenerator.
Alternatively disable the favicons by setting site.data.setup.realfavicongenerator to 'no'.
Configuration:
site.title: The title to be used when page.title is not set. page.title: The title to be used for the <title> element. site.description: The description to be used when the page.excerpt is not set. page.excerpt: The description for the <meta> element with the name 'description'. site.data.setup.use-separate-banner-menubar-file: Used to determine if JQuery must be loaded. site.data.setup.drop-down-menu: Used to determine if JQuery must be loaded. site.data.setup.enable-cookies-policy: Used to determine if the cookies consent must be used. site.google_analytics: Used to determine if google-analytics must be used.
–>{%- endcomment %} <head>
<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> {%- if site.data.setup.realfavicongenerator %} <link rel="apple-touch-icon" sizes="180x180" href="{{ "/icons/apple-touch-icon.png" | relative_url }}"> <link rel="icon" type="image/png" sizes="32x32" href="{{ "/icons/favicon-32x32.png" | relative_url }}"> <link rel="icon" type="image/png" sizes="16x16" href="{{ "/icons/favicon-16x16.png" | relative_url }}"> <link rel="manifest" href="{{ "/icons/manifest.json" | relative_url }}"> <link rel="mask-icon" href="{{ "/icons/safari-pinned-tab.svg" | relative_url }}" color="#5bbad5"> <link rel="shortcut icon" href="{{ "/icons/favicon.ico" | relative_url }}"> <meta name="msapplication-config" content="{{ "/icons/browserconfig.xml" | relative_url }}"> <meta name="theme-color" content="#ffffff"> {%- endif %} <title>{%- if page.title -%}{{ page.title | escape }}{%- else -%}{{ site.title | escape }}{%- endif -%}</title> {%- if page.excerpt -%} {%- assign description = page.excerpt -%} {%- else -%} {%- assign description = site.description -%} {%- endif %} <meta name="description" content="{{ description | strip_html | normalize_whitespace | truncate: 160 | escape }}"> <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}"> <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}"> <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}"> {%- comment -%}<!-- Include JQuery from google -->{%- endcomment -%} {%- if site.data.setup.use-separate-banner-menubar-file %} <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> {%- endif -%} {%- comment -%}<!-- Include google analytics for production build and if necessary -->{%- endcomment -%} {%- if jekyll.environment == 'production' and site.google_analytics -%} {%- include google-analytics.html -%} {%- endif -%} {%- comment -%}<!-- Include cookie consent for production build when enabled -->{%- endcomment -%} {%- if jekyll.environment == 'production' -%} {%- if site.data.setup.enable-cookies-policy -%} {%- include widgets/cookie-consent.html -%} {%- endif -%} {%- endif %}
</head> <!– end of include head.html –>