mirror of
https://git.tacowolf.net/TacoWolf/mestizo.monster.git
synced 2026-06-12 08:50:04 -04:00
37 lines
950 B
Text
37 lines
950 B
Text
<!DOCTYPE html>
|
|
<html lang="en" prefix="og: https://ogp.me/ns#">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{% include "_og.njk" %}
|
|
<title>{{ title }} - mestizo.monster</title>
|
|
<link
|
|
rel="preload"
|
|
href="/fonts/MartianGrotesk-StdLt.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/fonts/MartianGrotesk-StdMd.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/fonts/MartianMono-StdRg.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin
|
|
/>
|
|
<link rel="preload" href="/fonts/VT323.woff2" as="font" type="font/woff2" crossorigin />
|
|
<link href="/css/main.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
{% include "_header.njk" %}
|
|
{{ content | safe }}
|
|
{% include "_footer.njk" %}
|
|
</body>
|
|
</html>
|