29 lines
943 B
Lua
29 lines
943 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 .. "- FAQ"
|
|
site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD")
|
|
site.favicon = "/static/favicon.ico"
|
|
|
|
site:banner(fes.app.header.render(std))
|
|
|
|
site:note(u.cc({
|
|
std.h1("Frequently Asked Questions"),
|
|
std.p("Welcome to the world of fSD, come here ye before thou ask thy stupid questions."),
|
|
std.h2("Why is it called fSD?"),
|
|
std.p([[
|
|
The name "Free Software Distributions" is dervided from exactly what we do, we distribute free software.
|
|
This name stems from the Berkeley Software Distribution (BSD) specifically the Software Distribution part.
|
|
]]),
|
|
std.p('It is worth pointing out that the word "free" is being used in two ways here: one meaning "at no cost" and the other meaning "do whatever you like".'),
|
|
}))
|
|
|
|
site:note(fes.app.footer.render(std))
|
|
|
|
return site
|