Files
sites/fsd.vxserver.dev/include/footer.lua
2025-11-29 08:35:09 -05:00

14 lines
266 B
Lua

local footer = {}
footer.render = function(std)
return table.concat({
std.h2("Other resources"),
std.tl({
std.external("https://git.vxserver.dev/fSD", "Git Trees"),
std.external("https://git.vxserver.dev/fSD", "Documentation"),
}),
})
end
return footer