30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
<!doctype html>
|
|
<html lang="{{ metadata.language }}">
|
|
<head>
|
|
{% include "metadata.njk" %}
|
|
<link rel="stylesheet" type="text/css" href="/css/index.css" />
|
|
<link rel="stylesheet" type="text/css" href="/css/webfonts/webfonts.css" />
|
|
<link rel="stylesheet" type="text/css" href="/css/code.css" />
|
|
<!-- Mochi webmentions -->
|
|
<link rel="webmention" href="https://mochi-webmentions.meadow.cafe/webmention/mochi@upchur.ch/1/receive" />
|
|
<!-- Indieweb profile links -->
|
|
{% if not excludeProfilesFromHead %}{% for link in metadata.socialLinks %}{% if not link.excludeFromHead %}<link {% if link.customAttribute %} {{ link.customAttribute | safe }} {% endif %} href="{{ link.linkURL }}" />{% endif %}{% endfor %}{% endif %}
|
|
<!-- /Indieweb profile links -->
|
|
{% include "structuredData.njk" %}
|
|
{% include "analytics.html" %}
|
|
{% include "weatherStyle.njk" %}
|
|
{% include "wooModeStyle.njk" %}
|
|
</head>
|
|
<body>
|
|
{% include "header.njk" %}
|
|
<main id="skip">
|
|
<section>
|
|
{{ content | safe }}
|
|
</section>
|
|
</main>
|
|
{% include "footer.njk" %}
|
|
{% include "weather.njk" %}
|
|
{% include "wooMode.njk" %}
|
|
</body>
|
|
</html>
|