summaryrefslogtreecommitdiff
path: root/.zs/components/webring
diff options
context:
space:
mode:
Diffstat (limited to '.zs/components/webring')
-rwxr-xr-x.zs/components/webring49
1 files changed, 49 insertions, 0 deletions
diff --git a/.zs/components/webring b/.zs/components/webring
new file mode 100755
index 0000000..375b6c7
--- /dev/null
+++ b/.zs/components/webring
@@ -0,0 +1,49 @@
+#!/usr/bin/lua
+
+package.path = ".zs/?.lua;" .. package.path
+local html = require "components.html"
+
+print(html {
+ tag = "div",
+ class = "webring",
+ {
+ tag = "span",
+ {
+ tag = "a",
+ class = "volatile",
+ href = "https://ring.acab.dev/prev/C1NMCp8IXr",
+ title = "go to the previous page in the webring",
+ "[<<]"
+ }
+ },
+ {
+ tag = "span",
+ {
+ tag = "a",
+ class = "volatile",
+ href = "https://ring.acab.dev/rand/C1NMCp8IXr",
+ title = "go to a random page in the webring",
+ "[?]"
+ }
+ },
+ {
+ tag = "span",
+ {
+ tag = "a",
+ class = "volatile",
+ href = "https://ring.acab.dev",
+ title = "hacker webring",
+ "[⠠⠵ ]"
+ }
+ },
+ {
+ tag = "span",
+ {
+ tag = "a",
+ class = "volatile",
+ href = "https://ring.acab.dev/next/C1NMCp8IXr",
+ title = "go to the next page in the webring",
+ "[>>]"
+ }
+ },
+})