diff options
author | Starfall <us@starfall.systems> | 2023-09-05 18:41:44 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-09-05 18:41:44 -0500 |
commit | c0d2f6523324cfbd096b1c108800e50a1b87bf9b (patch) | |
tree | 231b8171469c7316fc41706d6763dc51d8d9622c /_includes | |
parent | 0ab55177177e42dc72e327e91cfe2e9b8ec7e19a (diff) |
add moon phase decoration, make feed icon bigger
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/base.njk | 4 | ||||
-rw-r--r-- | _includes/blogpost.njk | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/_includes/base.njk b/_includes/base.njk index 22f94b6..e31e4dc 100644 --- a/_includes/base.njk +++ b/_includes/base.njk @@ -9,6 +9,7 @@ title = "Starfall" <meta name=robots content="noindex, nofollow"> <meta name=viewport content="width=device-width, initial-scale=1"> <link rel=stylesheet href=/css/terminal.css> + <script src='/js/moon-phase.js'></script> {{ extraHeadContent | safe }} </head> @@ -17,6 +18,7 @@ title = "Starfall" <header> <h1>{{ title }}</h1> + <span style="float: right; user-select: none" id=decor-moons aria-hidden=true></span> <nav aria-label=primary> {% set navs = collections.all | eleventyNavigation %} <ul>{%- for nav in navs %} @@ -35,7 +37,7 @@ title = "Starfall" <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> +<div style=text-align:center>∨/∧</div> </footer> </body> diff --git a/_includes/blogpost.njk b/_includes/blogpost.njk index dce49b7..94541c4 100644 --- a/_includes/blogpost.njk +++ b/_includes/blogpost.njk @@ -9,6 +9,7 @@ title = "Starfall" <meta name=robots content="noindex, nofollow"> <meta name=viewport content="width=device-width, initial-scale=1"> <link rel=stylesheet href=/css/terminal.css> + <script src='/js/moon-phase.js'></script> {{ extraHeadContent | safe }} </head> @@ -17,6 +18,7 @@ title = "Starfall" <header> <h1>{{ title }}</h1> + <span style="float: right; user-select: none" id=decor-moons aria-hidden=true></span> <nav aria-label=primary> {% set navs = collections.all | eleventyNavigation %} <ul>{%- for nav in navs %} |