update doc page

This commit is contained in:
2026-01-22 22:27:34 -05:00
parent 0c3d8ae20d
commit c6bc5b3056
4 changed files with 453 additions and 78 deletions

View File

@@ -1,22 +1,29 @@
local fes = require("fes")
local std = fes.std
local u = fes.util
local site = fes.fes()
local title = "Free Software Distributions Project documentation"
site.title = title
site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD")
site.title = "Free Software Distributions Documentation"
site.copyright = fes.util.copyright("https://fsdproject.org", "fSD")
site.favicon = "/static/favicon.ico"
site:banner(fes.app.header.render(std))
site:banner(fes.util.cc {
fes.std.center(fes.std.ha("/", fes.std.h1("Free Software Distributions"))),
})
site:note(u.cc {
std.h2("Documentation pages"),
std.ul {
std.a("static/fes.html", "fes"),
}
std.center(std.h1("Online fSD manuals")),
std.note(u.cc {
std.center(std.h3("Fes")),
std.a("/static/fes.html", std.h4("Fes")),
std.p("  Free Easy Site Online Documentation. [" .. std.a("https://fsdproject.org/releases/fes", "fes home") .. "]"),
}),
std.note(u.cc {
std.center(std.h3("Tools")),
std.a("/static/yait.html", std.h4("Yait")),
std.p("  Yet Another Init Tool Online Documentation. [" .. std.a("https://fsdproject.org/releases/yait", "yait home") .. "]"),
})
})
return site