Module:CIB: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
No edit summary Tag: Reverted  | 
				No edit summary Tag: Undo  | 
				||
| Line 6: | Line 6: | ||
	local args = frame:getParent().args  | 	local args = frame:getParent().args  | ||
	local headerStyle  | 	local headerStyle  | ||
	if args.headerstyle and args.headerstyle ~=   | 	if args.headerstyle and args.headerstyle ~= '' then  | ||
		headerStyle = string.format('background-color:%s;', args.headerstyle)  | 		headerStyle = string.format('background-color:%s;', args.headerstyle)  | ||
	else  | 	else  | ||
| Line 14: | Line 14: | ||
		headerStyle = headerStyle,    | 		headerStyle = headerStyle,    | ||
	} )  | 	} )  | ||
	:addHeader( args.title )  | |||
	:addImage( args.image, args.caption )  | |||
	:addRow( 'Born', args.born )  | |||
	:addRow( 'Other Names', args.alias )  | |||
	:addRow( 'Occupation', args.occupation )  | |||
	:addRow( 'Satanic Affiliation', args.affiliation )  | |||
	return retval  | 	return retval  | ||
end  | |||
return p  | return p  | ||
Latest revision as of 03:09, 24 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( {
		headerStyle = headerStyle, 
	} )
	:addHeader( args.title )
	:addImage( args.image, args.caption )
	:addRow( 'Born', args.born )
	:addRow( 'Other Names', args.alias )
	:addRow( 'Occupation', args.occupation )
	:addRow( 'Satanic Affiliation', args.affiliation )
	return retval
end
return p