summary refs log tree commit diff
path: root/_includes
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2023-05-16 12:47:22 -0500
committerStarfall <us@starfall.systems>2023-05-16 13:03:57 -0500
commita8257ca465f8c707f3bb02567cbe789977506180 (patch)
treef003122b4d7e10575a3721168fc04afa867f48ca /_includes
initial commit
Diffstat (limited to '_includes')
-rw-r--r--_includes/base.njk31
1 files changed, 31 insertions, 0 deletions
diff --git a/_includes/base.njk b/_includes/base.njk
new file mode 100644
index 0000000..96ad9ed
--- /dev/null
+++ b/_includes/base.njk
@@ -0,0 +1,31 @@
+---
+title: Starfall
+---
+
+<!doctype html>
+<html lang=en._US dir=ltr>
+<title>{{ title }}</title>
+<meta charset=UTF-8>
+<meta name=robots content="noindex, nofollow">
+<meta name=viewport content="width=device-width, initial-scale=1">
+<!-- todo css -->
+<!-- todo color picker -->
+
+<header>
+	<h1>{{ title }}</h1>
+	<nav aria-label=primary>
+		<ul>
+			<li><a href=/ class=active aria-current=page>Home</a>
+			<li><a href=https://git.starfall.systems>Git</a>
+		</ul>
+	</nav>
+</header>
+
+{{ content | safe }}
+
+<footer>
+<section>
+	<p>This site is 100% <a href=https://git.starfall.systems/web>source-available</a>. © 2020-2023 Starfall. See <a href=https://git.starfall.systems/web/tree/COPYING.md rel=license>COPYING.md</a>.
+</section>
+<div style=text-align:center>⋁/⋀</div>
+</footer>