This commit is contained in:
2025-12-02 21:10:34 -05:00
parent 12c4d3c46e
commit 76eb4809e2
15 changed files with 327 additions and 103 deletions

View File

@@ -0,0 +1,5 @@
[app]
name = "docs.vxserver.dev"
version = "0.0.1"
authors = ["vx-clutch"]

View File

@@ -0,0 +1,9 @@
local header = {}
header.render = function(std)
return table.concat({
std.center(std.h1("Free Software Distributions Documentation")),
})
end
return header

View File

@@ -0,0 +1,17 @@
local fes = require("fes")
local std = fes.std
local u = fes.util
local site = fes.fes()
site.title = "Free Software Distributions Documentation"
site.copyright = fes.util.copyright("https://git.vxserver.dev/fSD", "fSD")
site:banner(fes.app.header.render(std))
site:note(u.cc({
std.h1("Free Software Distributions Documentation"),
std.blockquote(std.h1("NOT IMPLEMENTED")),
}))
return site