37 lines
1.3 KiB
Plaintext
37 lines
1.3 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="/" />
|
|
<meta property="og:description" content="{{ metadata.description }}" />
|
|
|
|
{#
|
|
<link rel="alternate" href="/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<meta property="og:image" content="/assets/img/logo.jpg" />
|
|
<meta property="og:image:alt" content="block print in black and orange of a rufous hummingbird in flight with tail flared. the hummingbird holds a banner that reads 'become ungovernable.'" />
|
|
#}
|
|
|
|
<meta name="generator" content="{{ eleventy.generator }}">
|
|
|
|
{#
|
|
<!-- CSS -->
|
|
<style>{% include "css/main.css" %}</style>
|
|
<style>{% getBundle "css" %}</style>
|
|
|
|
<!-- JS -->
|
|
<script type="module">{% getBundle "js" %}</script>
|
|
#}
|
|
</head>
|