33 lines
710 B
Lua
33 lines
710 B
Lua
local fes = require("fes")
|
|
local std = fes.std
|
|
local u = fes.util
|
|
|
|
local site = fes.fes()
|
|
|
|
local title = "Free Software Distributions"
|
|
|
|
site.title = title .. " - Release"
|
|
site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD")
|
|
site.favicon = "/static/favicon.ico"
|
|
|
|
site:banner(fes.app.header.render(std))
|
|
|
|
local pkgs = {
|
|
"yait",
|
|
"fes",
|
|
}
|
|
|
|
table.sort(pkgs)
|
|
|
|
local directory_packages = {}
|
|
for _, v in ipairs(pkgs) do
|
|
table.insert(directory_packages, std.a("/releases/" .. v, v .. "/"))
|
|
end
|
|
|
|
site:p("This directory contains the tools which have been created or maintained by the Free Software Distributions Project.")
|
|
site:tl(directory_packages)
|
|
|
|
site:note(fes.app.footer.render(std))
|
|
|
|
return site
|