local fes = require("fes") local std = fes.std local u = fes.util local site = fes.fes() site.title = "fes - Free Easy Site" site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD") site.favicon = "/static/favicon.ico" site:banner(fes.app.header.render(std)) site:h2("Fes") site:muted("fes is a lightweight, static, and optionated microframework.") site:h2("Development") site:p("You can " .. std.external("https://git.vxserver.dev/fSD/fes", "browse") .. " its source code or get a copy using the following command:") site:code("git clone https://git.vxserver.dev/fSD/fes") site:h2("Download") site:ul { std.p(std.a("/archive/fes/latest/fes.tar.gz", "fes-beta") .. " (2025-31-12)") } site:note(fes.app.footer.render(std)) return site