Module:Infobox Test
From Bibliotheca Anonoma
Revision as of 19:35, 8 January 2017 by Antonizoon (talk | contribs)
Documentation for this module may be created at Module:Infobox Test/doc
local p = {}
function p.run(frame)
local capiunto = require 'capiunto'
return capiunto.create( {
top = tostring(mw.title.getCurrentTitle()),
topStyle = 'background:#cfc;',
bottom = frame.args[1]; -- description
} )
:addImage(
-- featured image
'[[File:' + frame.args[2] + '|200px]]',
-- caption
frame.args[3]
)
:addRow('URL', frame.args[4])
:addRow('Project Status', frame.args[5])
:addRow('Archiving Status', frame.args[6])
:addRow('Project Source', frame.args[7])
end
return p