45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="{{ site.locale }}" dir="{{ site.i18n.dir }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<base href="{% base %}">
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<meta name="theme-color" content="white">
|
|
<meta name="color-scheme" content="light">
|
|
<meta name="referrer" content="strict-origin-when-cross-origin">
|
|
{% render 'sutty/meta_robots.html', unless: page.sitemap %}
|
|
|
|
<meta name="msapplication-TileColor" content="{{ site.theme.bg_color }}">
|
|
<meta name="theme-color" content="{{ site.theme.primary }}">
|
|
|
|
{% render 'head/favicons.html', favicon: site.about.logo, if: site.about.logo %}
|
|
{% render 'style.html', url: site.css.url, hash: site.css.hexdigest, integrity: site.css.base64digest %}
|
|
{% render 'pack.html', env: jekyll.environment, outputs: site.data.manifest.outputs %}
|
|
{% render 'preload_font.html', font: 'assets/fonts/forkawesome-webfont.woff2' %}
|
|
{% render 'activity_pub/head.html',
|
|
profile: site.activity_pub_profile,
|
|
actor: site.actor.id,
|
|
activity: page.activity.id
|
|
%}
|
|
{% for network in site.about.social_networks %}
|
|
{% render 'head/social_network.html', network: -%}
|
|
{% endfor %}
|
|
|
|
{% seo %}
|
|
</head>
|
|
<body class="min-vh-100 d-flex flex-column justify-content-between">
|
|
<div data-turbo-permanent>
|
|
<a href="#content" data-turbo="false" class="sr-only sr-only-focusable">
|
|
{{ site.i18n.accessibility.skip_to_content }}
|
|
</a>
|
|
</div>
|
|
|
|
<main tabindex="-1" role="main" id="content" class="flex-grow-1 container">
|
|
{{ content }}
|
|
</main>
|
|
|
|
{% include_cached footer.html about=site.about license=site.license privacy_policy=site.privacy_policy code_of_conduct=site.code_of_conduct %}
|
|
</body>
|
|
</html>
|