Files
fes/test/complex_sample_project/include/footer.lua
2026-01-16 16:08:18 -05:00

14 lines
284 B
Lua

local footer = {}
footer.render = function(std)
return table.concat({
std.h2("Other resources"),
std.tl({
std.external("https://git.vxserver.dev/fSD/fes", "Fes source"),
std.external("https://docs.vxserver.dev/static/fes.html", "Documentation"),
}),
})
end
return footer