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: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)) return site