diff options
author | delta <darkussdelta@gmail.com> | 2025-09-17 23:29:44 +0200 |
---|---|---|
committer | delta <darkussdelta@gmail.com> | 2025-09-17 23:29:44 +0200 |
commit | 088a18410e43a209a4864bccad5ddb89a7ee1d5d (patch) | |
tree | 7f7db9ad58e0e2c3ec9141b7b54668ee01164a13 /.zs | |
parent | 16bdab2a899bf4ed120e10a889c320304b561130 (diff) |
asides, hacker webring stuff and some more
Diffstat (limited to '.zs')
-rwxr-xr-x | .zs/buttons | 2 | ||||
-rw-r--r-- | .zs/buttons.jq | 1 | ||||
-rw-r--r-- | .zs/config.yml | 4 | ||||
-rw-r--r-- | .zs/layout.html | 9 | ||||
-rwxr-xr-x | .zs/scripts | 6 |
5 files changed, 15 insertions, 7 deletions
diff --git a/.zs/buttons b/.zs/buttons new file mode 100755 index 0000000..9ea9460 --- /dev/null +++ b/.zs/buttons @@ -0,0 +1,2 @@ +#!/bin/sh +cat buttons.json | jq -r -f .zs/buttons.jq diff --git a/.zs/buttons.jq b/.zs/buttons.jq new file mode 100644 index 0000000..833971a --- /dev/null +++ b/.zs/buttons.jq @@ -0,0 +1 @@ +map("<a href=\"\(.link)\"><img src=\"\(.image)\" alt=\"An 88x31 button. \(.alt)\" title=\"\(.title)\"></a>") | join("\n") diff --git a/.zs/config.yml b/.zs/config.yml index d421309..6c9dce8 100644 --- a/.zs/config.yml +++ b/.zs/config.yml @@ -1,6 +1,6 @@ --- -title: delta.twoexem.com -description: ma olin mi lon kulupu nanpa +title: darkuss.twoexem.com +description: a silly place for a silly person extensions: - anchor diff --git a/.zs/layout.html b/.zs/layout.html index 5c0671b..fe8910e 100644 --- a/.zs/layout.html +++ b/.zs/layout.html @@ -37,8 +37,13 @@ <div> <main><div>{{ content }}</div></main> <footer class="subtle"> - <span>made with <span style="color: var(--red)"><3</span> by darkuss</span><span><a href="/credits.html">credits</a></span - ><span>last modified: <time datetime="{{ current_date }}">{{ current_date }}</time></span> + <div> + <span><a class="volatile" href="https://ring.acab.dev/prev/C1NMCp8IXr">[<<]</a></span><span><a class="volatile" href="https://ring.acab.dev/rand/C1NMCp8IXr">[random]</a></span><span><a href="https://ring.acab.dev">[⠠⠵ ]</a></span><span><a class="volatile" href="https://ring.acab.dev/next/C1NMCp8IXr">[>>]</a></span> + </div> + <div> + <span>made with <span style="color: var(--red)"><3</span> by darkuss</span><span><a href="/credits.html">credits</a></span + ><span>last modified: <time datetime="{{ current_date }}">{{ current_date }}</time></span> + </div> </footer> </div> </div> diff --git a/.zs/scripts b/.zs/scripts index 7e1f2ad..f40dd48 100755 --- a/.zs/scripts +++ b/.zs/scripts @@ -5,9 +5,9 @@ set -e JS="" # Load live.js for non-production builds for faster development -if [ -z "$ZS_PRODUCTION" ]; then - JS="$JS live" -fi +# if [ -z "$ZS_PRODUCTION" ]; then +# JS="$JS live" +# fi for js in $JS; do printf "<script type=\"application/javascript\" src=\"/assets/js/%s.js\"></script>\n" "$js" |