diff options
author | Starfall <us@starfall.systems> | 2023-05-23 12:14:00 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-05-24 12:51:23 -0500 |
commit | 5c0a183a1d830479e4cfc705bdc9f13b2b1efac2 (patch) | |
tree | 40dc719987731076bcdc80632aefa4e74b1817d5 /_includes | |
parent | 1df389da097411e437aa33aa104132bc593e1ed4 (diff) |
feature: atom feed
- add atom feed - add theme-colored feed icon to /blog/
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/base.njk | 17 |
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> |