5641d7e51a
ALSO: Remove fading on dropdown menu click. This is also a bug on the actual upstream, when the cursor leaves the screen the menu disappears but the fading doesn't. This causes things like the menu saying it's open when it's not and closed when open. I'm not dealing with an upstream bug.
25 lines
1 KiB
HTML
25 lines
1 KiB
HTML
<meta charset="utf-8">
|
|
|
|
{% include seo.html %}
|
|
|
|
{% 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 %}
|
|
|
|
<!-- https://t.co/dKP3o1e -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<script>
|
|
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js ';
|
|
</script>
|
|
|
|
<!-- For all browsers -->
|
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
|
<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>
|
|
|
|
{% if site.head_scripts %}
|
|
{% for script in site.head_scripts %}
|
|
<script src="{{ script | relative_url }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|