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-31 ---------- Some changes were made to this site. [sites](https://git.vxserver.dev/fSD/sites) * New article * Update release pages 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