This commit is contained in:
2025-08-01 13:17:28 +02:00
parent e744f05fe9
commit 5412facc43
9 changed files with 1569 additions and 1 deletions

11
gen_games.sh Executable file
View File

@@ -0,0 +1,11 @@
html='<ul class="games">'
for entry in public/games/*
do
filename=$(basename "entry" .html)
dest="/games/$filename"
dest+=".html"
html+="<li class=\"postli\"><a class=\"posta\" href=\"$dest"
html+="\>$filename</a></li>"
done
html+= </ul>
echo $html