generated from inherentlee/11ty
42 lines
1.6 KiB
Plaintext
42 lines
1.6 KiB
Plaintext
<head>
|
|
{% if title %}
|
|
{% set pageTitle %}{{ title | safe }} | {{ 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="blue and gold icon showing a greeting card with wings" />
|
|
|
|
<meta name="generator" content="{{ eleventy.generator }}">
|
|
|
|
<!-- 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+Mono:ital,wght@0,200..800;1,200..800&family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
|
|
|
|
<!-- CSS -->
|
|
<style>{% include "css/main.css" %}</style>
|
|
<style>{% include "css/nav.css" %}</style>
|
|
<style>{% include "css/cards.css" %}</style>
|
|
<style>{% getBundle "css" %}</style>
|
|
|
|
<!-- JS -->
|
|
<script>{% include "js/dropdown.js" %}</script>
|
|
<script type="module">{% getBundle "js" %}</script>
|
|
</head>
|