update vxserver.dev to fsdproject.org

This commit is contained in:
2026-01-16 19:50:48 -05:00
parent 86c942105b
commit 9228e7a324
20 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
local fes = require("fes")
local std = fes.std
local site = fes.fes()
fes.app.global.start(fes, site, "Community")
site:h1("Community")
site:h2("Mailing lists")
site:ul {
std.element("code", nil, "hackers@fsdproject.org") .. " - " .. std.strong("only for patches") .. "Commit messages and diffs for all fSD projects can be sent here for review.",
}
site:h2("Discord")
site:p("Offical " .. std.a("https://discord.gg/A7QBvK5jhd", "discord") .. " server of the fSD project:")
fes.app.global.finish(fes, site)
return site