1.0 fsd main

This commit is contained in:
2025-12-07 12:58:55 -05:00
parent 76eb4809e2
commit 66fa060e2f
8 changed files with 71 additions and 64 deletions

Binary file not shown.

Submodule fsd.vxserver.dev/archive/releases/yait/yait added at 54db089b71

View File

@@ -0,0 +1 @@
djasjkdjaslkdjaskl

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -7,6 +7,7 @@ local site = fes.fes()
local title = "Free Software Distributions" local title = "Free Software Distributions"
site.title = title site.title = title
site.favicon = "/static/image/favicon.ico"
site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD") site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD")
site:banner(fes.app.header.render(std)) site:banner(fes.app.header.render(std))

View File

@@ -95,6 +95,10 @@ table.insert(articles, std.a(link, display))
n = n + 1 n = n + 1
end end
table.sort(articles, function (x, y)
return x > y
end)
if n > 0 then if n > 0 then
site:h1("Site news") site:h1("Site news")
site:note(std.ul(articles)) site:note(std.ul(articles))

View File

@@ -22,7 +22,7 @@ for i, pkg in pairs(pkgs) do
std.muted(pkg[2] or "Could not find a description."), std.muted(pkg[2] or "Could not find a description."),
std.br(), std.br(),
std.ul({ std.ul({
std.rl(pkg[1], std.external("https://git.vxserver.dev/fSD/" .. pkg[1], "Download")), std.rl(pkg[1], std.external("/archive/releases/" .. pkg[1], "Download")),
}), }),
})) }))
end end