summary refs log tree commit diff
path: root/_includes/base.njk
diff options
context:
space:
mode:
Diffstat (limited to '_includes/base.njk')
-rw-r--r--_includes/base.njk17
1 files changed, 12 insertions, 5 deletions
diff --git a/_includes/base.njk b/_includes/base.njk
index 6ff7553..a11c22c 100644
--- a/_includes/base.njk
+++ b/_includes/base.njk
@@ -3,11 +3,16 @@ 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">
-<link rel=stylesheet href=/css/terminal.css>
+<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/terminal.css>
+	{{ extraHeadContent | safe }}
+</head>
+
+<body>
 <!-- todo color picker -->
 
 <header>
@@ -30,3 +35,5 @@ title = "Starfall"
 </section>
 <div style=text-align:center>⋁/⋀</div>
 </footer>
+
+</body>