Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Character tabs

From Sekaipedia

To generate {{Character tabs}}, invoke using the main function.


local builder = require('Module:TabviewBuilder')
local p = {}

function p.main(frame)
	local args = frame:getParent().args

	local tabview = builder.new(args[1])
	
	tabview:addTab("", 'Main')
		:addTab("/Cards", "Cards")
		:addTab("/Profile", "Profile")
		:addTab("/Translations", "Translations")
		:addTab("/Image Gallery", "Gallery")
	
	return tabview:tostring()
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.