Module:CIB: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary Tag: Reverted |
||
Line 16: | Line 16: | ||
} ) | } ) | ||
:addHeader( args.title) | :addHeader( args.title) | ||
:addImage( args.image, args.caption ) | :addImage( args.image, args.caption, 'thumb' ) | ||
:addRow( 'Born', args.born ) | :addRow( 'Born', args.born ) | ||
:addRow( 'Other Names', args.alias ) | :addRow( 'Other Names', args.alias ) |
Revision as of 23:41, 21 June 2021
Documentation for this module may be created at Module:CIB/doc
local capiunto = require 'capiunto'
local p = {}
function p.main(frame)
local args = frame:getParent().args
local headerStyle
if args.headerstyle and args.headerstyle ~= '' then
headerStyle = string.format('background-color:%s;', args.headerstyle)
else
headerStyle = 'background-color:grey;'
end
local retval = capiunto.create( {
title = tostring(mw.title.getCurrentTitle()),
headerStyle = headerStyle,
} )
:addHeader( args.title)
:addImage( args.image, args.caption, 'thumb' )
:addRow( 'Born', args.born )
:addRow( 'Other Names', args.alias )
:addRow( 'Occupation', args.occupation )
:addRow( 'Satanic Affiliation', args.affiliation )
return retval
end
return p