View source for Module:Navbox
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
function p.box( f )
local args = require( 'Module:ProcessArgs' ).merge( true )
local navbox = {}
if args.title then
local class = args.class or 'collapsible'
local bodyStyle = args.bodystyle or ''
if bodyStyle ~= '' then
bodyStyle = 'style="' .. bodyStyle .. '"'
end
table.insert( navbox, ' {| class="navbox hlist ' .. class .. '" ' .. bodyStyle )
local titleStyle = args.titlestyle or ''
if titleStyle ~= '' then
titleStyle = 'style="' .. titleStyle .. '"'
end
local navbar = args[1] or ''
if navbar ~= '' then
local mini = ''
000
1:0
Templates used on this page:
- Template:Documentation header (view source)
- Template:Navbar (view source)
- Template:Navbox see also (view source)
- Template:SimpleNavbox (view source)
- Template:Template link (view source)
- Template:Tl (view source)
- Template:Transclude (view source)
- Template:Yesno (view source)
- Module:Documentation (view source)
- Module:Navbox/doc (view source)
- Module:ProcessArgs (view source)
Return to Module:Navbox.