function p.main(frame)
	local args = frame:getParent().args
	if not (args.manufacturer or not args.year or not args.featured) then error("Incorrect parameters to the car infobox!") end
	local retval = capiunto.create({
		top = args.name or "{{BASEPAGENAME}}",
	if args.image and args.image ~= "" then retval:addImage(args.image or "", args.caption or nil) end
	retval:addRow("Manufacturer", "[["..args.manufacturer.."]]")
	retval:addRow("Year", tonumber(args.year))
	:addRow("Featured in", args.featured)
	--:addHeader("A header between the data rows")