View source for Module:Navbar
From All Skies Encyclopaedia
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 = {}
local HtmlBuilder = require('Module:HtmlBuilder')
function trim(s)
return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1"))
end
function _navbar( args )
if not args[1] then
local span = HtmlBuilder.create('span')
span
.addClass('error')
.css('float', 'left')
.css('white-space', 'nowrap')
.wikitext('Error: No name provided')
return span
end
000
1:0
Template used on this page:
Return to Module:Navbar.