Module:Infobox Test

From Bibliotheca Anonoma
Revision as of 19:37, 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(
		string.format('[[File:%s|200px]]', frame.args[2]), -- featured image
		frame.args[3] -- caption
	)
	: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