the home site for me: also iteration 3 or 4 of my site

chore: exclude root index.html from file listing

Changed files
+3 -3
tools
+3 -3
tools/genOG.ts
···
}
// read all the files in the current directory filtering for index.htmls
-
const files = (await readdir("public/", { recursive: true })).filter((file) =>
-
file.endsWith("index.html"),
-
);
+
const files = (await readdir("public/", { recursive: true }))
+
.filter((file) => file.endsWith("index.html"))
+
.filter((file) => file !== "index.html");
const directories = new Set(
files.map((file) => file.replace("index.html", "")),