aboutsummaryrefslogtreecommitdiffstats
path: root/includes/base.html
blob: 7aabdf55e3b33c2cd67aeb76626a04c2afd66320 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---json
{
"date": "git Created"
}
---
<!doctype html>
<html :lang="metadata.language">

<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta name="color-scheme" content="light dark">
	<meta name="generator" :content="eleventy.generator">
	<title property="og:title" @text="title || metadata.title"></title>
	<meta property="og:locale" :content="metadata.language">
	<meta name="theme-color" :content="metadata.theme">
	<meta name="description" :property="og:description" :content="description || metadata.description">
	<meta property="og:url" :content="htmlBaseUrl(page.url, metadata.url)">
	<link rel="canonical" :href="htmlBaseUrl(page.url, metadata.url)">
	<meta property="og:site_name" :content="metadata.title">
	<meta name="author" :content="metadata.author.name">
	<meta property="og:type" content="website">
	<meta name="twitter:card" content="summary">
	<link rel="alternate" href="/atom.xml" type="application/atom+xml" :title="metadata.title">
	<link rel="icon" href="/favicon.svg" type="image/svg+xml">
	<link rel="stylesheet" href="main.css" />
	<link rel="stylesheet" :href="getBundleFileUrl('css')" webc:keep />
</head>

<body>
	<header>
		<nav>
			<a href="#" style="font-weight: 900;">Sudomsg</a>
			<template webc:for="entry of eleventyNavigation(collections.all)" webc:nokeep>
				<a :href="entry.url" @text="entry.title"></a>
			</template>
			<a href="https://git.sudomsg.com/">Git</a>
		</nav>
	</header>
	<main @html="content"></main>
	<footer>
		Subscribe - <a href="/atom.xml">Atom</a>
	</footer>
</body>

</html>