import kgva site

This commit is contained in:
2026-06-29 01:37:03 +02:00
commit f7643602cb
103 changed files with 2015 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{{ define "bodyclass" }}page-404{{ end }}
{{ define "main" }}
<div class="tui">
<p class="tui__cmd"><span class="tui__sym">$</span> cd <span class="err404">.</span></p>
<p class="tui__total">cd: no such file or directory: <span class="err404">.</span></p>
<p>error 404 — nothing lives here.</p>
<p><a href="{{ "/" | relURL }}">cd ~</a></p>
</div>
<script>
(function () {
var p = (location.pathname || "/").replace(/\/$/, "") || "/";
var n = document.querySelectorAll(".err404");
for (var i = 0; i < n.length; i++) n[i].textContent = p;
})();
</script>
{{ end }}