Files
sites/fsd.vxserver.dev/www/index.lua
2026-01-02 10:23:15 -05:00

49 lines
1.0 KiB
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
site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD")
site.favicon = "/static/favicon.ico"
site:banner(fes.app.header.render(std))
site:custom(fes.markdown_to_html([[
News
===
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-1.0.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))
return site