31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
|
|
<!doctype html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
|
||
|
|
<title>{{ title or metadata.title }}</title>
|
||
|
|
<meta name="description" content="{{ description or metadata.description }}">
|
||
|
|
{# <link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}"> #}
|
||
|
|
|
||
|
|
<meta property="og:title" content="{{ title or metadata.title }}" />
|
||
|
|
<meta property="og:type" content="website" />
|
||
|
|
<meta property="og:description" content="{{ description or metadata.description }}" />
|
||
|
|
<meta property="og:site_name" content="{{ metadata.title }}" />
|
||
|
|
|
||
|
|
<meta name="generator" content="{{ eleventy.generator }}">
|
||
|
|
|
||
|
|
{# Styles #}
|
||
|
|
<link rel="stylesheet" href="/assets/css/main.css">
|
||
|
|
|
||
|
|
{# 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">
|
||
|
|
|
||
|
|
{# Icons #}
|
||
|
|
<script src="https://kit.fontawesome.com/884dded219.js" crossorigin="anonymous"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
{{ content | safe }}
|
||
|
|
<body>
|