Module:Infobox Test: Difference between revisions

From Bibliotheca Anonoma
No edit summary
No edit summary
Line 9: Line 9:
} )
} )
:addImage(
:addImage(
'[[File:' .. frame.args[2] .. '|200px]]', -- featured image
string.format('[[File:%s|200px]]', frame.args[2]), -- featured image
frame.args[3] -- caption
frame.args[3] -- caption
)
)

Revision as of 19:37, 8 January 2017

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