Module:CIB: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local capiunto = require 'capiunto' | |||
local p = {} | local p = {} | ||
function p. | function p.main(frame) | ||
local | local args = frame:getParent().args | ||
local headerStyle | |||
title = tostring(mw.title.getCurrentTitle()) , | 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, | |||
} ) | } ) | ||
:addImage( | :addImage( args.image, args.caption ) | ||
:addRow( | :addRow( 'Born', args.born ) | ||
:addRow( | :addRow( 'Other Names', args.alias ) | ||
:addRow( | :addRow( 'Occupation', args.alias ) | ||
:addRow( | :addRow( 'Satanic Affiliation', args.alias ) | ||
return retval | |||
end | |||
return p | return p |
Revision as of 22:52, 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, } ) :addImage( args.image, args.caption ) :addRow( 'Born', args.born ) :addRow( 'Other Names', args.alias ) :addRow( 'Occupation', args.alias ) :addRow( 'Satanic Affiliation', args.alias ) return retval end return p