summary refs log tree commit diff
path: root/_includes
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2023-05-23 12:14:00 -0500
committerStarfall <us@starfall.systems>2023-05-24 12:51:23 -0500
commit5c0a183a1d830479e4cfc705bdc9f13b2b1efac2 (patch)
tree40dc719987731076bcdc80632aefa4e74b1817d5 /_includes
parent1df389da097411e437aa33aa104132bc593e1ed4 (diff)
feature: atom feed
- add atom feed
- add theme-colored feed icon to /blog/
Diffstat (limited to '_includes')
-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>