c46f9a48f7
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
592 B
HTML
17 lines
592 B
HTML
{{ 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="{{ "/" | relLangURL }}">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 }}
|