Compare commits
No commits in common. "5a2dbae11c136db28da6718be9bdf462d55ca5a0" and "47ef9e7af08e5da3bb6ccbcc81be4a17f6699227" have entirely different histories.
5a2dbae11c
...
47ef9e7af0
|
@ -7,10 +7,6 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% include "global/metagen.njk" %}
|
{% include "global/metagen.njk" %}
|
||||||
|
|
||||||
{# Fonts #}
|
|
||||||
{% include "global/fontdefault.njk" %}
|
|
||||||
<link rel="stylesheet" href="{{'/assets/fonts/intel-one-mono/intel-one-mono.css' | url | safe}}">
|
|
||||||
|
|
||||||
{# CSS #}
|
{# CSS #}
|
||||||
{% include "global/css-bundle.njk" %}
|
{% include "global/css-bundle.njk" %}
|
||||||
{% if hasTooltips %}
|
{% if hasTooltips %}
|
||||||
|
@ -18,8 +14,9 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<style>{% getBundle "css" %}</style>
|
<style>{% getBundle "css" %}</style>
|
||||||
|
|
||||||
{# Favicon #}
|
{# Fonts #}
|
||||||
{% block favicon %}{% include "global/favicon.njk" %}{% endblock %}
|
{% include "global/fontdefault.njk" %}
|
||||||
|
<link rel="stylesheet" href="{{'/assets/fonts/intel-one-mono/intel-one-mono.css' | url | safe}}">
|
||||||
|
|
||||||
{# Verifications #}
|
{# Verifications #}
|
||||||
<link rel="me" href="mailto:contact@leilukin.com">
|
<link rel="me" href="mailto:contact@leilukin.com">
|
||||||
|
@ -31,6 +28,9 @@
|
||||||
{# Webmention #}
|
{# Webmention #}
|
||||||
<link rel="webmention" href="https://webmention.io/leilukin.com/webmention">
|
<link rel="webmention" href="https://webmention.io/leilukin.com/webmention">
|
||||||
|
|
||||||
|
{# Favicon #}
|
||||||
|
{% block favicon %}{% include "global/favicon.njk" %}{% endblock %}
|
||||||
|
|
||||||
{# JavaScript #}
|
{# JavaScript #}
|
||||||
<script src="{% getBundleFileUrl 'js' %}" defer></script>
|
<script src="{% getBundleFileUrl 'js' %}" defer></script>
|
||||||
{% if toc %}
|
{% if toc %}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
<link rel="preload" href="/assets/fonts/lexend/lexend-v19-latin-regular.woff2" as="font" type="font/woff2" crossorigin>
|
<link rel="preload" href="/assets/fonts/lexend/lexend-v19-latin-regular.woff2" as="font" type="font/woff2" crossorigin>
|
||||||
<link rel="preload" href="/assets/fonts/lexend/lexend-v19-latin-700.woff2" as="font" type="font/woff2" crossorigin>
|
<link rel="preload" href="/assets/fonts/lexend/lexend-v19-latin-700.woff2" as="font" type="font/woff2" crossorigin>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
/* lexend-regular - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
font-family: 'Lexend';
|
font-family: 'Lexend';
|
||||||
|
@ -8,6 +10,8 @@
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
src: url('/assets/fonts/lexend/lexend-v19-latin-regular.woff2') format('woff2');
|
src: url('/assets/fonts/lexend/lexend-v19-latin-regular.woff2') format('woff2');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* lexend-600 - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
font-family: 'Lexend';
|
font-family: 'Lexend';
|
||||||
|
@ -15,6 +19,8 @@
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
src: url('/assets/fonts/lexend/lexend-v19-latin-600.woff2') format('woff2');
|
src: url('/assets/fonts/lexend/lexend-v19-latin-600.woff2') format('woff2');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* lexend-700 - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
font-family: 'Lexend';
|
font-family: 'Lexend';
|
||||||
|
|
Loading…
Reference in New Issue