Inital commit
All checks were successful
Deploy site / Deploy-Site (push) Successful in 0s

This commit is contained in:
2026-06-26 15:04:03 -04:00
commit 6f6772fa8d
3 changed files with 47 additions and 0 deletions

21
www/index.lua Normal file
View File

@@ -0,0 +1,21 @@
local fes = require("fes")
local std = fes.std
local u = fes.util
local site = fes.fes()
site.title = "Notes"
site.favicon = ""
site.copyright = u.copyright("https://fsdproject.org/people/vxclutch", "vxclutch")
site:banner(std.h1("Notes of vxclutch"))
local notes = {}
for _, value in pairs(u.ls("www/notes")) do
table.insert(notes, std.a("/notes/" .. value, value))
end
site:note(std.ul(notes))
return site