No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
headerStyle = headerStyle, | headerStyle = headerStyle, | ||
} ) | } ) | ||
:addImage( args.logo, tostring(args.title)..tostring(' logo') ) | :addImage( '[[File:'..args.logo..'|200px]]', tostring(args.title)..tostring(' logo') ) | ||
:addImage( args.cover, args.coverCaption ) | :addImage( '[[File:'..args.cover..'|200px]]', args.coverCaption ) | ||
:addRow( 'Owner(s)', args.parent ) | :addRow( 'Owner(s)', args.parent ) | ||
:addRow( 'Products/Services', args.products ) | :addRow( 'Products/Services', args.products ) |
Revision as of 23:12, 7 January 2024
Documentation for this module may be created at Module:BrandHeader/doc
local capiunto = require 'capiunto'
local p = {}
function p.main(frame)
local args = frame:getParent().args
local headerStyle
headerStyle = 'background-color:grey;'
local retval = capiunto.create( {
title = args.title,
headerStyle = headerStyle,
} )
:addImage( '[[File:'..args.logo..'|200px]]', tostring(args.title)..tostring(' logo') )
:addImage( '[[File:'..args.cover..'|200px]]', args.coverCaption )
:addRow( 'Owner(s)', args.parent )
:addRow( 'Products/Services', args.products )
return retval
end
return p