Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 16:51, 30 January 2026 by Galactica (talk | contribs)

Documentation for this module may be created at Module:Infobox Meme/doc

local p = {}
 
function p.run(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		title = tostring(mw.title.getCurrentTitle().text),
		bottom = frame.args[0]
	} )
	:addRow('Zugehörigkeit', frame.args[1])
	:addRow('Entstehungsjahr',frame.args[2])
	:addRow('Teil von',frame.args[3])
	:addImage(
		frame.args[4], frame.args[5]
	)
end
 
return p