10 lines
174 B
Lua
10 lines
174 B
Lua
local header = {}
|
|
|
|
header.render = function(std)
|
|
return table.concat({
|
|
std.center(std.h1("Free Software Distributions Documentation")),
|
|
})
|
|
end
|
|
|
|
return header
|