Timeline
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Timeline/doc
local p = {}
function p.render( frame )
if not mw.smw then
return "mw.smw module not found"
end
local people = mw.smw.ask("[[Kategorie:Person]]|?Person:Date of birth|?Person:Date of death")
return people
end
return p