View source for Module:CatInfobox
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
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 = args.name,
headerStyle = headerStyle,
captionStyle = "text-align: center;",
imageStyle = "text-align: center;",
})
retval:addImage("[[File:" .. args.image .. "|300px]]", args.caption)
if args.other_names then retval:addRow("Other name(s)", args.other_names) end
000
1:0
Template used on this page:
Return to Module:CatInfobox.