generated from inherentlee/11ty
39 lines
1.6 KiB
Plaintext
39 lines
1.6 KiB
Plaintext
<head>
|
|
{% if title %}
|
|
{% set pageTitle %}{{ title }} | {{ metadata.title }}{% endset %}
|
|
{% else %}
|
|
{% set pageTitle = metadata.title %}
|
|
{% endif %}
|
|
<title>{{ pageTitle }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
<!-- Meta -->
|
|
<link rel="canonical" href="/" />
|
|
<meta name="description" content="{{ metadata.description }}" />
|
|
<meta name="robots" content="index,follow" />
|
|
<meta property="og:title" content="{{ pageTitle }}" />
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:url" content="{{ metadata.url }}{{ page.url }}" />
|
|
<meta property="og:description" content="{{ metadata.description }}" />
|
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<meta property="og:image" content="{{ metadata.url }}/img/logo-light.png" />
|
|
<meta property="og:image:alt" content="the district dharma logo, which depicts a stylized lotus flower under 3 dots, surrounded by an upper and lower curve, in two shades of blue" />
|
|
|
|
<meta name="generator" content="{{ eleventy.generator }}">
|
|
|
|
<!-- CSS -->
|
|
<style>{% include "css/main.css" %}</style>
|
|
<style>{% getBundle "css" %}</style>
|
|
|
|
{#
|
|
<!-- JS -->
|
|
<script type="module">{% getBundle "js" %}</script>
|
|
#}
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
|
</head>
|