init: initial site

This commit is contained in:
Didier Slof 2024-03-29 16:17:59 +01:00
commit d6da14e4bb
7 changed files with 292 additions and 0 deletions

4
public/res/anchors.js Normal file
View file

@ -0,0 +1,4 @@
document.querySelectorAll("h2")
.forEach(e => {
e.onclick = () => window.location.hash = e.parentElement.id;
});