26 lines
909 B
Lua
26 lines
909 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 .. "- About"
|
|
site.copyright = u.copyright("https://git.vxserver.dev/fSD", "fSD")
|
|
|
|
site:banner(fes.app.header.render(std))
|
|
|
|
site:note(u.cc({
|
|
std.h2("Free Software Distributions"),
|
|
std.p("Free Software Distributions are a collection of free, minimal, and hackable packages desinged for the similar developer: someone who values freedom in software and a partition from corporation.")
|
|
}))
|
|
site:note(u.cc({
|
|
std.h2("Copyright and License"),
|
|
std.p("Except where otherwise stated, content on this site is copyright (C) 2025 by fSD and is made avaliable to you under the " .. fes.std.a("https://creativecommons.org/licenses/by-nc/4.0/", "Creative Commons Attribtuion-NonCommerical 4.0 International"))
|
|
}))
|
|
|
|
site:note(fes.app.footer.render(std))
|
|
|
|
return site
|