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

@@ -1,59 +1,17 @@
local fes = require("fes")
local std = fes.std
local u = fes.util
local site = fes.fes()
local title = "Free Software Distributions"
fes.app.global.start(fes, site)
site.title = title
site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD")
site.favicon = "/static/favicon.ico"
site:h1("Home")
site:p(u.cc {
std.p("Welcome to the " .. std.em("Free Software Distributions Project") .. ". This place is home to various free software."),
})
site:banner(fes.app.header.render(std))
site:g(fes.markdown_to_html([[
News
===
2026-03-01
----------
[fes-0.3.0](/releases/fes) released: [download](/archive/fes/fes-0.3.0.tar.gz)
2026-03-01
----------
[fes-0.2.1](/releases/fes) released: [download](/archive/fes/fes-0.2.1.tar.gz)
2026-03-01
----------
[fes-0.2.0](/releases/fes) released: [download](/archive/fes/fes-0.2.0.tar.gz)
2026-01-02
----------
Some changes were made to this site.
[sites](https://git.vxserver.dev/fSD/sites)
* Update fes's release page
* Update release archive structure
* Add way to get to archive fromr release
2026-01-01
----------
[fes-0.1.0](/releases/fes) released: [download](/archive/fes/fes-0.1.0.tar.gz)
2025-31-12
----------
Some changes were made to this site.
[sites](https://git.vxserver.dev/fSD/sites)
* New article
* Update release pages
2025-17-12
----------
Some changes were made to this site.
[sites](https://git.vxserver.dev/fSD/sites)
* General improvments and fixes
* Moving the news page to here.
]]))
site:note(fes.app.footer.render(std))
fes.app.global.finish(fes, site)
return site