update a few things
This commit is contained in:
@@ -13,24 +13,17 @@ site.favicon = "/static/favicon.ico"
|
||||
site:banner(fes.app.header.render(std))
|
||||
|
||||
local pkgs = {
|
||||
{ "yait", "Highly opinionated C and SH project generator." },
|
||||
{ "fes", "A lightweight, static, and opinionated microframework." },
|
||||
"yait",
|
||||
"fes",
|
||||
}
|
||||
|
||||
for i, pkg in pairs(pkgs) do
|
||||
pkgs[i] = std.note(u.cc({
|
||||
std.h2(pkg[1]),
|
||||
std.muted(pkg[2] or "Could not find a description."),
|
||||
std.br(),
|
||||
std.ul({
|
||||
std.rl(pkg[1], std.external("/archive/releases/" .. pkg[1], "Download")),
|
||||
}),
|
||||
}))
|
||||
local directory_packages = {}
|
||||
for _, v in ipairs(pkgs) do
|
||||
table.insert(directory_packages, std.a("/releases/" .. v, v .. "/"))
|
||||
end
|
||||
|
||||
site:custom(u.cc({
|
||||
u.cc(pkgs),
|
||||
}))
|
||||
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))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user