commit 03b17d4

Emilia Smólska  ·  2026-08-11 16:08:33 +0000 UTC
parent 03b17d4
import
25 files changed,  +151, -0
+1, -0
1@@ -0,0 +1 @@
2+out/
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+0, -0
+16, -0
 1@@ -0,0 +1,16 @@
 2+<h1>contact information</h1>
 3+<dl>
 4+<dd>xmpp:
 5+<dt>emilia@snug.moe
 6+<dd>irc:
 7+<dt>emilia on <a href=https://ergo.chat/gamja>ergo.chat</a>
 8+<dd>fediverse:
 9+<dt>
10+<a href=https://snac.girlkissing.tips/emilia>
11+emilia@snac.girlkissing.tips
12+</a>
13+<dd>email:
14+<dt><a href=mailto:emilia@hopeserv.net>emilia@hopeserv.net</a>
15+
16+<p>
17+<a href=https://keys.openpgp.org/vks/v1/by-fingerprint/3A6DFDF0CF94D0AF7AEC55FE2345770677FE3BBD>here</a> is my pgp key.
+0, -0
+73, -0
 1@@ -0,0 +1,73 @@
 2+<h1>emilia's website</h1>
 3+<p>hello
 4+
 5+<h2>buttons</h2>
 6+
 7+<a href=/ class=imglink>
 8+<img src=/_/emilia.png alt="my button">
 9+</a>
10+<a href=https://chld.4plt.ch class=imglink>
11+<img src=/_/chld.png alt="chld's button">
12+</a>
13+<a href=https://dalem.foo class=imglink>
14+<img src=/_/dalem.png alt="dalem's button">
15+</a>
16+<a href=https://ouppyawa.xyz class=imglink>
17+<img src=/_/dani.png alt="dani's button">
18+</a>
19+<a href=https://girlkissing.tips class=imglink>
20+<img src=/_/magdalena.png alt="magdalena's button">
21+</a>
22+<a href=https://merc.guru class=imglink>
23+<img src=/_/merc.png alt="merc's button">
24+</a>
25+<a href=https://pastanoggin.com class=imglink>
26+<img src=/_/noodle.png alt="noodle's button">
27+</a>
28+<a href=https://maidofhope.eu class=imglink>
29+<img src=/_/nadia.png alt="&epsilon;-0x2e7579's button">
30+</a>
31+<a href=https://shrub.industries class=imglink>
32+<img src=/_/shrub.png alt="shrub's button">
33+</a>
34+
35+<!-- non-people buttons -->
36+<br>
37+
38+<a href=https://en.wikipedia.org/wiki/Effective_accelerationism
39+   class=imglink>
40+<img src=/_/killkids.png alt="move fast kill kids">
41+</a>
42+<a href=https://srcdump class=imglink>
43+<img src=/_/srcdump.png alt=srcdump>
44+</a>
45+<a href=https://valerie.vg class=imglink>
46+<img src=/_/estrogen.png alt="powered by estrogen">
47+</a>
48+<a href=https://bdsmovement.net class=imglink>
49+<img src=/_/palestine.png alt="free palestine now">
50+</a>
51+<a href=https://9larp.net class=imglink>
52+<img src=/_/9larp.png alt="9larp.net">
53+</a>
54+<a href=https://lodz.hackerspace.pl class=imglink>
55+<img src=/_/hsldz.png alt="hs &lstrok;dz">
56+</a>
57+
58+<h2>buttonless friends</h2>
59+
60+<ul>
61+<li>Abby &lt;3
62+<li><a href=https://princessdisorder.nekoweb.org>Ame</a>
63+<li><a href=https://autumn.thekittycat.ca>Autumn</a>
64+<li><a href=https://pita.im>Pita</a>
65+</ul>
66+
67+<h2>webrings</h2>
68+
69+<a href=https://ring.grendel.church class=imglink>
70+<img src=/_/grendel.png alt="grendel ring">
71+</a>
72+<a href=https://ring.grendel.church/prev/cat-n>&larr; prev</a> |
73+<a href=https://ring.grendel.church/random>random</a> |
74+<a href=https://ring.grendel.church/next/cat-n>next &rarr;</a>
+18, -0
 1@@ -0,0 +1,18 @@
 2+<!doctype html>
 3+<html lang=en>
 4+<head>
 5+<meta charset=utf-8>
 6+<meta name=color-scheme content="only light">
 7+<meta name=viewport
 8+content="width=device-width, initial-scale=1.0">
 9+<title>@TITLE@</title>
10+<link rel=icon type=image/png href=/favicon.png>
11+<link rel=stylesheet href=/style.css>
12+</head>
13+<body>
14+<nav>
15+<ul>
16+<li><a href=/>home</a>
17+<li><a href=/contact>contact</a>
18+</ul>
19+</nav>
+22, -0
 1@@ -0,0 +1,22 @@
 2+body {
 3+   font-family: monospace, monospace;
 4+   margin: auto;
 5+   max-width: 768px;
 6+   padding: 1em;
 7+}
 8+
 9+nav ul {
10+   list-style: "\203a";
11+}
12+
13+nav ul li {
14+   padding-left: .2em;
15+}
16+
17+.imglink {
18+   text-decoration: none;
19+}
20+
21+a {
22+   color: hotpink;
23+}
+21, -0
 1@@ -0,0 +1,21 @@
 2+set -eu
 3+
 4+pages='home contact'
 5+
 6+for page in $pages; do
 7+   outdir=out/$page
 8+   outdir=${outdir%/home}
 9+   mkdir -p $outdir
10+   cat html.pre $page.html | sed s/@TITLE@/$page/ > $outdir/index.html
11+done
12+
13+ln -sf ../favicon.png out/
14+ln -sf ../style.css out/
15+ln -sf ../_/ out/
16+
17+case ${1-} in
18+   publish)
19+      tar -C out -czhf - . | hut pages publish -d cat-n.org /dev/fd/0;;
20+   serve)
21+      python3 -m http.server -d out/;;
22+esac