bcd6126612
* Use relative_url and absolute_url where possible Drops the `contains "://"` check, adopt Jekyll 3.7 Ref: https://github.com/mmistakes/minimal-mistakes/pull/2385#issuecomment-579882236 * One more unneeded {% assign %} * Remove one more assign as noted by mmistakes * Consolidate 4 more captures * Consolidate an extra assign on "active" class
36 lines
988 B
HTML
36 lines
988 B
HTML
<meta charset="utf-8">
|
|
|
|
{% include seo.html %}
|
|
|
|
<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">
|
|
|
|
<!-- 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 }}">
|
|
|
|
<!--[if IE]>
|
|
<style>
|
|
/* old IE unsupported flexbox fixes */
|
|
.greedy-nav .site-title {
|
|
padding-right: 3em;
|
|
}
|
|
.greedy-nav button {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<![endif]-->
|
|
|
|
{% if site.head_scripts %}
|
|
{% for script in site.head_scripts %}
|
|
<script src="{{ script | relative_url }}"></script>
|
|
{% endfor %}
|
|
{% endif %}
|