commit 14c7906
merc
·
2026-07-19 20:50:04 +0000 UTC
parent 3355a07
etc: sync to srcdump
17 files changed,
+64,
-17
M
_sync.sh
M
_sync.sh
+6,
-6
1@@ -1,10 +1,10 @@
2 #!/bin/sh
3-EXCLUDE="_sync.sh config.env .git"
4+EXCLUDE="_sync.sh build.sh config.env"
5 tmp=$(mktemp -d)
6 cp -r ./public/. "$tmp/"
7-for i in $EXCLUDE; do rm -rf "$tmp/$i"; done
8-scp -r "$tmp/." merc@4plt.ch:~/public_html/
9+for i in $EXCLUDE; do
10+ rm -rf "$tmp/$i"
11+done
12+scp -r "$tmp"/* "$tmp"/.[!.]* merc@4plt.ch:~/public_html/ || true
13 rm -rf "$tmp"
14-
15-# fyi, this is for pushing changes to https://4plt.ch
16-# probably not needed for whoever is seeing this
17+echo "merc.4plt.ch :: done"
+0,
-0
+0,
-0
+0,
-0
+0,
-0
+0,
-0
+0,
-0
+0,
-0
+0,
-0
+0,
-0
1@@ -0,0 +1,12 @@
2+<div class="button-grid">
3+ <a href="https://4plt.ch" class="button-grid__item"><img src="/.assets/4plt.gif" alt="4plt button"></a>
4+ <a href="https://srcdump.net" class="button-grid__item"><img src="/.assets/srcdump.png" alt="srcdump button"></a>
5+ <a href="https://acme.cat-v.org" class="button-grid__item"><img src="/.assets/acme.png" alt="acme button"></a>
6+ <a href="https://uboachan.net" class="button-grid__item"><img src="/.assets/yn.gif" alt="yume nikki button"></a>
7+ <a href="https://dalem.foo" class="button-grid__item"><img src="/.assets/buttondalem.png" alt="dalem button"></a>
8+ <a href="https://glegle.gallery" class="button-grid__item"><img src="/.assets/glegle.png" alt="glegle button"></a>
9+ <a href="https://iyn.4plt.ch" class="button-grid__item"><img src="/.assets/zgd.png" alt="iyn button"></a>
10+ <a href="https://merc.guru" class="button-grid__item"><img src="/.assets/desktop.gif" alt="recom button"></a>
11+ <a href="https://merc.guru" class="button-grid__item"><img src="/.assets/nonai.gif" alt="non-slop button"></a>
12+ <a class="button-grid__item"><img src="/.assets/believe.jpg" alt="believing button"></a>
13+</div>
+1,
-2
1@@ -1,2 +1 @@
2-will rework later
3-irc @ irc.ergo.chat : merc
4+irc.ergo.chat AND srcdump.net : merc
+5,
-0
1@@ -0,0 +1,5 @@
2+just a shell-based static site generator.
3+this site was built using myrc - says that at the bottom of ur screen.
4+pretty proud of this :) mostly because this is my first ever serious project
5+
6+link: <https://srcdump.net/merc/myrc/>
+4,
-0
1@@ -0,0 +1,4 @@
2+*"derive creepy pasta:
3+u tell ur girl n she say "my executable is static"
4+THEN WHO WAS LD.SO?"*
5+@ emilia
+33,
-0
1@@ -3,6 +3,7 @@
2 --fg: #292929;
3 --fg-mute: #d4d4d4;
4 --fg-link: #782a2a;
5+ --fg-link-dark: #451e1e;
6
7 --subtext: 12px;
8 --default: 18px;
9@@ -141,6 +142,38 @@ header {
10 height: auto;
11 }
12
13+.button-grid {
14+ display: flex;
15+ flex-wrap: wrap;
16+ flex-direction: column;
17+ gap: 10px;
18+ justify-content: center;
19+ padding: 10px 0;
20+}
21+
22+.button-grid__item {
23+ display: inline-block;
24+ background: var(--fg-link-dark);
25+ padding: 2px;
26+ line-height: 0;
27+ filter: drop-shadow(4px 4px 0 var(--fg-link));
28+}
29+
30+.button-grid__item:hover {
31+ filter: drop-shadow(4px 4px 0 var(--fg-link-dark));
32+ background: none;
33+}
34+
35+.button-grid__item img {
36+ max-width: 100%;
37+ height: auto;
38+ border: 2px solid var(--fg-mute);
39+}
40+
41+.button-grid__item:hover img {
42+ border-color: var(--fg-link);
43+}
44+
45 a {
46 cursor: url('/.assets/arrow_up.png'), pointer;
47 display: inline-block;
+3,
-9
1@@ -14,15 +14,9 @@
2 </head>
3 <body>
4 <div class="mcontain">
5- <div class="lcontain">
6- {{NAV}}
7- </div>
8- <div class="ccontain">
9- {{CONTENT}}
10- </div>
11- </div>
12- <div class="bcontain">
13- <footer>{{FOOTER}}</footer>
14+ <div class="lcontain">{{NAV}}</div>
15+ <div class="ccontain">{{CONTENT}}</div>
16 </div>
17+ <div class="bcontain"><footer>{{FOOTER}}</footer></div>
18 </body>
19 </html>