summary refs log tree commit diff
path: root/_includes/archive.njk
blob: 1425f6e55a74293df8ef89a4a3f7e51be9cdf3f3 (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
---
title = "Starfall"
---
<!doctype html>
<html lang=en-US dir=ltr>
<head>
	<title>{{ title }}</title>
	<meta charset=UTF-8>
	<meta name=robots content="noindex, nofollow">
	<meta name=viewport content="width=device-width, initial-scale=1">
	<link rel=stylesheet href=/css/base.css>
	<script src='/js/moon-phase.js'></script>
	{{ extraHeadContent | safe }}
</head>

<body>
<header class=clearfix>
	<h1>{{ title }}</h1>
	<nav aria-label=primary>
		{% set navs = collections.all | eleventyNavigation %}
		<ul>{%- for nav in navs %}
			<li>
				<a href="{{ nav.url }}"{% if nav.url == page.url %} class="active" aria-current="page"{% endif %}>{{ nav.title }}</a>
			</li>{%- endfor %}
		</ul>
	</nav>
	<div id=decor-moons aria-hidden=true></div>
</header>

<main>
<section>
	<b>Title</b>: {{ title }}<br/>
	<b>Author</b>: {{ author }}<br/>
	<b>Source</b>: <a href="{{ source }}">{{ source }}</a><br/>
</section>

<section>
{{ content | safe }}
</section>
</main>

<footer>
<div style=text-align:center>∨/∧</div>
</footer>

</body>