This commit is contained in:
nora 2024-01-21 21:03:51 +01:00
parent c7f0b96748
commit 9f9120dc27

View file

@ -6,8 +6,11 @@
<title>nilstrieb.dev</title> <title>nilstrieb.dev</title>
<link rel="stylesheet" href="static/theme.css" /> <link rel="stylesheet" href="static/theme.css" />
<style> <style>
.secret { .hint {
color: #5b4561; color: #5b4561;
}
.secret {
cursor: pointer; cursor: pointer;
} }
@ -58,7 +61,7 @@
</p> </p>
<p> <p>
there may be many there may be many
<span onclick="onSecretClick()" class="secret" role="button">secrets</span> <span onclick="onSecretClick()" class="secret hint" role="button">secrets</span>
depending on where you look.... depending on where you look....
</p> </p>
</div> </div>
@ -94,7 +97,8 @@
<p> <p>
in addition to all the other stuff mentioned above, i also have some random projects in addition to all the other stuff mentioned above, i also have some random projects
hosted on my server. they are pretty bad and i won't promote them this openly, but you hosted on my server. they are pretty bad and i won't promote them this openly, but you
will be able to find them if you *really* want to. will be able to find them if you really want to. some people have been saying
that there might be a secret <span role="button" class="hint">b</span>ack alley somewhere...
</p> </p>
</div> </div>
</div> </div>
@ -128,7 +132,7 @@
isBKeyDown = true; isBKeyDown = true;
blog.classList.add("blog-back-alley"); blog.classList.add("blog-back-alley");
blog.href = "/back-alley.html"; blog.href = "/back-alley.html";
blog.children[0].innerText = "blog?" blog.children[0].innerText = "blog?";
} }
}); });
document.addEventListener("keyup", (ev) => { document.addEventListener("keyup", (ev) => {
@ -137,7 +141,7 @@
isBKeyDown = false; isBKeyDown = false;
blog.classList.remove("blog-back-alley"); blog.classList.remove("blog-back-alley");
blog.href = "/blog"; blog.href = "/blog";
blog.children[0].innerText = "blog" blog.children[0].innerText = "blog";
} }
}); });
</script> </script>