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:note(std.blockquote([[ "UNIX is very simple" - Dennis Ritchie
"GNU's Not UNIX" - Richard Stallman ]] )) site:note(u.cc({ std.h2("Daily Random Snippet"), std.p("The following is a random code snippet that features a unique feature or syntax."), std.blockquote(std.pre(fes.app.snippet.daily_random())), })) site:note(fes.app.footer.render(std)) return site