2016-03-07 10:27:07 -05:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2016-03-10 21:13:01 -05:00
|
|
|
{% include seo.html %}
|
2016-03-07 10:27:07 -05:00
|
|
|
|
2021-02-05 20:26:16 -05: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 10:27:07 -05:00
|
|
|
|
2018-12-19 22:02:41 +09:00
|
|
|
<!-- https://t.co/dKP3o1e -->
|
2016-03-07 10:27:07 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
2016-03-21 15:59:16 -04:00
|
|
|
<script>
|
|
|
|
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js ';
|
|
|
|
</script>
|
|
|
|
|
2016-03-07 10:27:07 -05:00
|
|
|
<!-- For all browsers -->
|
2018-03-20 11:35:36 -04: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 10:27:07 -05:00
|
|
|
|
2017-09-12 12:27:36 -04:00
|
|
|
{% if site.head_scripts %}
|
|
|
|
{% for script in site.head_scripts %}
|
2020-03-07 04:37:07 +08:00
|
|
|
<script src="{{ script | relative_url }}"></script>
|
2017-09-12 12:27:36 -04:00
|
|
|
{% endfor %}
|
2021-06-23 14:10:12 +02:00
|
|
|
{% endif %}
|