31 lines
573 B
Lua
31 lines
573 B
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
|
|
===
|
|
|
|
2025-12-17
|
|
----------
|
|
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
|