generated from inherentlee/11ty
42 lines
1.6 KiB
Plaintext
42 lines
1.6 KiB
Plaintext
<head>
|
|
{% if title %}
|
|
{% if title == metadata.title %}
|
|
{% set pageTitle = title %}
|
|
{% else %}
|
|
{% set pageTitle %}{{ title }} | {{ metadata.title }}{% endset %}
|
|
{% endif %}
|
|
{% 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/2026-2027-logo-dark.png" />
|
|
<meta property="og:image:alt"
|
|
content="the logo of FediZineFest 2026-2027 which is a 4 by 4 grid of blocky letters reading fedi zine fest 26-27, randomly colored with the 26-27 palette" />
|
|
|
|
<meta name="generator" content="{{ eleventy.generator }}">
|
|
|
|
<!-- CSS -->
|
|
<style>{% include "css/main.css" %}</style>
|
|
<style>{% include "css/zines.css" %}</style>
|
|
<style>{% getBundle "css" %}</style>
|
|
|
|
{# 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&display=swap" rel="stylesheet">
|
|
</head>
|