View source for Module:Infobox
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
local p = {}
function p.block( f )
if f == mw.getCurrentFrame() then
args = f:getParent().args
end
return "[[Category:Blocks]]" .. f:expandTemplate{ title='Infobox', args = args }
end
function p.item( f )
if f == mw.getCurrentFrame() then
args = f:getParent().args
end
return "[[Category:Items]]" .. f:expandTemplate{ title='Infobox', args = args }
end
return p
000
1:0
Templates used on this page:
Return to Module:Infobox.