This commit is contained in:
2026-01-15 13:40:01 -05:00
parent f3114b38a8
commit 050daea24e
19 changed files with 118 additions and 286 deletions

View File

@@ -0,0 +1,25 @@
local fes = require("fes")
local std = fes.std
local site = fes.fes()
fes.app.global.start(fes, site, "Releases")
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)
fes.app.global.finish(fes, site)
return site