fes

Free Easy Site
Log | Files | Refs | README | LICENSE

footer.lua (284B)


      1 local footer = {}
      2 
      3 footer.render = function(std)
      4     return table.concat({
      5 	std.h2("Other resources"),
      6 	std.tl({
      7 		std.external("https://git.vxserver.dev/fSD/fes", "Fes source"),
      8 		std.external("https://docs.vxserver.dev/static/fes.html", "Documentation"),
      9 	}),
     10 })
     11 end
     12 
     13 return footer