Module:Infobox Test
From Bibliotheca Anonoma
Documentation for this module may be created at Module:Infobox Test/doc
local p = {}
function p.default(frame)
local capiunto = require 'capiunto'
return capiunto.create( {
top = tostring(mw.title.getCurrentTitle()),
topStyle = 'background:#cfc;',
bottom = frame.args["description"]; -- description
} )
:addImage(
string.format('[[File:%s|200px]]', frame.args["img_url"]), -- featured image
frame.args["caption"] -- caption
)
:addRow('URL', frame.args["url"])
:addRow('Project Status', frame.args["project_status"])
:addRow('Archiving Status', frame.args["archiving_status"])
:addRow('Project Source', frame.args["project_source"])
end
return p