2016-03-07 16:27:07 +01:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2016-03-11 03:13:01 +01:00
|
|
|
{% include seo.html %}
|
2016-03-07 16:27:07 +01:00
|
|
|
|
2021-02-06 02:26:16 +01:00
|
|
|
{% unless site.atom_feed.hide %}
|
|
|
|
<link href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
|
|
|
|
{% endunless %}
|
2016-03-07 16:27:07 +01:00
|
|
|
|
2018-12-19 14:02:41 +01:00
|
|
|
<!-- https://t.co/dKP3o1e -->
|
2016-03-07 16:27:07 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
2016-03-21 20:59:16 +01:00
|
|
|
<script>
|
|
|
|
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js ';
|
|
|
|
</script>
|
|
|
|
|
2016-03-07 16:27:07 +01:00
|
|
|
<!-- For all browsers -->
|
2018-03-20 16:35:36 +01:00
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
2021-06-23 14:10:12 +02:00
|
|
|
<link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
|
|
|
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css"></noscript>
|
2016-03-07 16:27:07 +01:00
|
|
|
|
2017-09-12 18:27:36 +02:00
|
|
|
{% if site.head_scripts %}
|
|
|
|
{% for script in site.head_scripts %}
|
2020-03-06 21:37:07 +01:00
|
|
|
<script src="{{ script | relative_url }}"></script>
|
2017-09-12 18:27:36 +02:00
|
|
|
{% endfor %}
|
2021-06-23 14:10:12 +02:00
|
|
|
{% endif %}
|