29 lines
636 B
Lua
29 lines
636 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:banner(fes.app.header.render(std))
|
|
|
|
site:note(std.blockquote([[
|
|
"UNIX is very simple" - Dennis Ritchie
|
|
<br>
|
|
"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
|