Wikipèdiya
kaiwiki
https://kai.wikipedia.org/wiki/Sh%C3%A0fi_Maiw%C3%A0a
MediaWiki 1.46.0-wmf.22
first-letter
Mìidiyà
Musanmàn
Ɗàfu
Ba wàanò
Màatu mà Ba wàanò
Wikipèdiya
Màatu mà Wikipèdiya
Payìil
Màatu mà Payiil
MediaWiki
Màatu mà MediaWiki
Tampilet
Màatu mà Tampilet
Gàɗu
Màatu mà Gàɗu
Sashì
Màatu mà Sashì
TimedText
TimedText talk
Module
Module talk
Event
Event talk
Module:Location map
828
70
10079
253
2026-04-01T18:59:56Z
De-Invincible
36
10079
Scribunto
text/plain
require('strict')
local p = {}
local getArgs = require('Module:Arguments').getArgs
local function round(n, decimals)
local pow = 10^(decimals or 0)
return math.floor(n * pow + 0.5) / pow
end
function p.getMapParams(map, frame)
if not map then
error('The name of the location map definition to use must be specified', 2)
end
local moduletitle = mw.title.new('Module:Location map/data/' .. map)
if not moduletitle then
error(string.format('%q is not a valid name for a location map definition', map), 2)
elseif moduletitle.exists then
local mapData = mw.loadData('Module:Location map/data/' .. map)
return function(name, params)
if name == nil then
return 'Module:Location map/data/' .. map
elseif mapData[name] == nil then
return ''
elseif params then
return mw.message.newRawMessage(tostring(mapData[name]), unpack(params)):plain()
else
return mapData[name]
end
end
else
error('Unable to find the specified location map definition: "Module:Location map/data/' .. map .. '" does not exist', 2)
end
end
function p.data(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local params = {}
for k,v in ipairs(args) do
if k > 2 then
params[k-2] = v
end
end
return map(args[2], #params ~= 0 and params)
end
local hemisphereMultipliers = {
longitude = { W = -1, w = -1, E = 1, e = 1 },
latitude = { S = -1, s = -1, N = 1, n = 1 }
}
local function decdeg(degrees, minutes, seconds, hemisphere, decimal, direction)
if decimal then
if degrees then
error('Decimal and DMS degrees cannot both be provided for ' .. direction, 2)
elseif minutes then
error('Minutes can only be provided with DMS degrees for ' .. direction, 2)
elseif seconds then
error('Seconds can only be provided with DMS degrees for ' .. direction, 2)
elseif hemisphere then
error('A hemisphere can only be provided with DMS degrees for ' .. direction, 2)
end
local retval = tonumber(decimal)
if retval then
return retval
end
error('The value "' .. decimal .. '" provided for ' .. direction .. ' is not valid', 2)
elseif seconds and not minutes then
error('Seconds were provided for ' .. direction .. ' without minutes also being provided', 2)
elseif not degrees then
if minutes then
error('Minutes were provided for ' .. direction .. ' without degrees also being provided', 2)
elseif hemisphere then
error('A hemisphere was provided for ' .. direction .. ' without degrees also being provided', 2)
end
return nil
end
decimal = tonumber(degrees)
if not decimal then
error('The degree value "' .. degrees .. '" provided for ' .. direction .. ' is not valid', 2)
elseif minutes and not tonumber(minutes) then
error('The minute value "' .. minutes .. '" provided for ' .. direction .. ' is not valid', 2)
elseif seconds and not tonumber(seconds) then
error('The second value "' .. seconds .. '" provided for ' .. direction .. ' is not valid', 2)
end
decimal = decimal + (minutes or 0)/60 + (seconds or 0)/3600
if hemisphere then
local multiplier = hemisphereMultipliers[direction][hemisphere]
if not multiplier then
error('The hemisphere "' .. hemisphere .. '" provided for ' .. direction .. ' is not valid', 2)
end
decimal = decimal * multiplier
end
return decimal
end
-- Finds a parameter in a transclusion of {{Coord}}.
local function coord2text(para,coord) -- this should be changed for languages which do not use Arabic numerals or the degree sign
local lat, long = mw.ustring.match(coord,'<span class="p%-latitude latitude">([^<]+)</span><span class="p%-longitude longitude">([^<]+)</span>')
if lat then
return tonumber(para == 'longitude' and long or lat)
end
local result = mw.text.split(mw.ustring.match(coord,'%-?[%.%d]+°[NS] %-?[%.%d]+°[EW]') or '', '[ °]')
if para == 'longitude' then result = {result[3], result[4]} end
if not tonumber(result[1]) or not result[2] then
mw.log('Malformed coordinates value')
mw.logObject(para, 'para')
mw.logObject(coord, 'coord')
return error('Malformed coordinates value', 2)
end
return tonumber(result[1]) * hemisphereMultipliers[para][result[2]]
end
-- effectively make removeBlanks false for caption and maplink, and true for everything else
-- if useWikidata is present but blank, convert it to false instead of nil
-- p.top, p.bottom, and their callers need to use this
function p.valueFunc(key, value)
if value then
value = mw.text.trim(value)
end
if value ~= '' or key == 'caption' or key == 'maplink' then
return value
elseif key == 'useWikidata' then
return false
end
end
local function getContainerImage(args, map)
if args.AlternativeMap then
return args.AlternativeMap
elseif args.relief then
local digits = mw.ustring.match(args.relief,'^[1-9][0-9]?$') or '1' -- image1 to image99
if map('image' .. digits) ~= '' then
return map('image' .. digits)
end
end
return map('image')
end
function p.top(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local width
local default_as_number = tonumber(mw.ustring.match(tostring(args.default_width),"%d*"))
if not args.width then
width = round((default_as_number or 240) * (tonumber(map('defaultscale')) or 1))
elseif mw.ustring.sub(args.width, -2) == 'px' then
width = mw.ustring.sub(args.width, 1, -3)
else
width = args.width
end
local width_as_number = tonumber(mw.ustring.match(tostring(width),"%d*")) or 0;
if width_as_number == 0 then
-- check to see if width is junk. If it is, then use default calculation
width = round((default_as_number or 240) * (tonumber(map('defaultscale')) or 1))
width_as_number = tonumber(mw.ustring.match(tostring(width),"%d*")) or 0;
end
if args.max_width ~= "" and args.max_width ~= nil then
-- check to see if width bigger than max_width
local max_as_number = tonumber(mw.ustring.match(args.max_width,"%d*")) or 0;
if width_as_number>max_as_number and max_as_number>0 then
width = args.max_width;
end
end
local retval = frame:extensionTag{name = 'templatestyles', args = {src = 'Module:Location map/styles.css'}}
if args.float == 'center' then
retval = retval .. '<div class="center">'
end
if args.caption and args.caption ~= '' and args.border ~= 'infobox' then
retval = retval .. '<div class="locmap noviewer noresize thumb '
if args.float == '"left"' or args.float == 'left' then
retval = retval .. 'tleft'
elseif args.float == '"center"' or args.float == 'center' or args.float == '"none"' or args.float == 'none' then
retval = retval .. 'tnone'
else
retval = retval .. 'tright'
end
retval = retval .. '"><div class="thumbinner" style="width:' .. (width + 2) .. 'px'
if args.border == 'none' then
retval = retval .. ';border:none'
elseif args.border then
retval = retval .. ';border-color:' .. args.border
end
retval = retval .. '"><div style="position:relative;width:' .. width .. 'px' .. (args.border ~= 'none' and ';border:1px solid lightgray">' or '">')
else
retval = retval .. '<div class="locmap" style="width:' .. width .. 'px;'
if args.float == '"left"' or args.float == 'left' then
retval = retval .. 'float:left;clear:left'
elseif args.float == '"center"' or args.float == 'center' then
retval = retval .. 'float:none;clear:both;margin-left:auto;margin-right:auto'
elseif args.float == '"none"' or args.float == 'none' then
retval = retval .. 'float:none;clear:none'
else
retval = retval .. 'float:right;clear:right'
end
retval = retval .. '"><div style="width:' .. width .. 'px;padding:0"><div style="position:relative;width:' .. width .. 'px">'
end
local image = getContainerImage(args, map)
local currentTitle = mw.title.getCurrentTitle()
retval = string.format(
'%s[[File:%s|%spx|%s%s|class=notpageimage]]',
retval,
image,
width,
args.alt or ((args.label or currentTitle.text) .. ' is located in ' .. map('name')),
args.maplink and ('|link=' .. args.maplink) or ''
)
if args.caption and args.caption ~= '' then
if (currentTitle.namespace == 0) and mw.ustring.find(args.caption, '##') then
retval = retval .. '[[Category:Pages using location map with a double number sign in the caption]]'
end
end
if args.overlay_image then
return retval .. '<div style="position:absolute;top:0;left:0">[[File:' .. args.overlay_image .. '|' .. width .. 'px|class=notpageimage]]</div>'
else
return retval
end
end
function p.bottom(frame, args, map)
if not args then
args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
end
if not map then
map = p.getMapParams(args[1], frame)
end
local retval = '</div>'
local currentTitle = mw.title.getCurrentTitle()
if not args.caption or args.border == 'infobox' then
if args.border then
retval = retval .. '<div style="padding-top:0.2em">'
else
retval = retval .. '<div style="font-size:91%;padding-top:3px">'
end
retval = retval
.. (args.caption or (args.label or currentTitle.text) .. ' (' .. map('name') .. ')')
.. '</div>'
elseif args.caption ~= '' then
-- This is not the pipe trick. We're creating a link with no text on purpose, so that CSS can give us a nice image
retval = retval .. '<div class="thumbcaption"><div class="magnify">[[:File:' .. getContainerImage(args, map) .. '|class=notpageimage| ]]</div>' .. args.caption .. '</div>'
end
if args.switcherLabel then
retval = retval .. '<span class="switcher-label" style="display:none">' .. args.switcherLabel .. '</span>'
elseif args.autoSwitcherLabel then
retval = retval .. '<span class="switcher-label" style="display:none">Show map of ' .. map('name') .. '</span>'
end
retval = retval .. '</div></div>'
if args.caption_undefined then
mw.log('Removed parameter caption_undefined used.')
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
retval = retval .. '[[Category:Location maps with removed parameters|caption_undefined]]'
end
end
if map('skew') ~= '' or map('lat_skew') ~= '' or map('crosses180') ~= '' or map('type') ~= '' then
mw.log('Removed parameter used in map definition ' .. map())
if currentTitle.namespace == 0 then
local key = (map('skew') ~= '' and 'skew' or '') ..
(map('lat_skew') ~= '' and 'lat_skew' or '') ..
(map('crosses180') ~= '' and 'crosses180' or '') ..
(map('type') ~= '' and 'type' or '')
retval = retval .. '[[Category:Location maps with removed parameters|' .. key .. ' ]]'
end
end
if string.find(map('name'), '|', 1, true) then
mw.log('Pipe used in name of map definition ' .. map())
if currentTitle.namespace == 0 then
retval = retval .. '[[Category:Location maps with a name containing a pipe]]'
end
end
if args.float == 'center' then
retval = retval .. '</div>'
end
return retval
end
local function markOuterDiv(x, y, imageDiv, labelDiv, label_size)
return mw.html.create('div')
:addClass('od')
:addClass('notheme') -- T236137
:cssText('top:' .. round(y, 3) .. '%;left:' .. round(x, 3) .. '%;font-size:' .. label_size .. '%')
:node(imageDiv)
:node(labelDiv)
end
local function markImageDiv(mark, marksize, label, link, alt, title)
local builder = mw.html.create('div')
:addClass('id')
:cssText('left:-' .. round(marksize / 2) .. 'px;top:-' .. round(marksize / 2) .. 'px')
:attr('title', title)
if marksize ~= 0 then
builder:wikitext(string.format(
'[[File:%s|%dx%dpx|%s|link=%s%s|class=notpageimage]]',
mark,
marksize,
marksize,
label,
link,
alt and ('|alt=' .. alt) or ''
))
end
return builder
end
local function markLabelDiv(label, label_size, label_width, position, background, x, marksize)
if tonumber(label_size) == 0 then
return mw.html.create('div'):addClass('l0'):wikitext(label)
end
local builder = mw.html.create('div')
:cssText('width:' .. label_width .. 'em')
local distance = round(marksize / 2 + 1)
if position == 'top' then -- specified top
builder:addClass('pv'):cssText('bottom:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em')
elseif position == 'bottom' then -- specified bottom
builder:addClass('pv'):cssText('top:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em')
elseif position == 'left' or (tonumber(x) > 70 and position ~= 'right') then -- specified left or autodetected to left
builder:addClass('pl'):cssText('right:' .. distance .. 'px')
else -- specified right or autodetected to right
builder:addClass('pr'):cssText('left:' .. distance .. 'px')
end
builder = builder:tag('div')
:wikitext(label)
if background then
builder:cssText('background-color:' .. background)
end
return builder:done()
end
local function getX(longitude, left, right)
local width = (right - left) % 360
if width == 0 then
width = 360
end
local distanceFromLeft = (longitude - left) % 360
-- the distance needed past the map to the right equals distanceFromLeft - width. the distance needed past the map to the left equals 360 - distanceFromLeft. to minimize page stretching, go whichever way is shorter
if distanceFromLeft - width / 2 >= 180 then
distanceFromLeft = distanceFromLeft - 360
end
return 100 * distanceFromLeft / width
end
local function getY(latitude, top, bottom)
return 100 * (top - latitude) / (top - bottom)
end
function p.mark(frame, args, map)
if not args then
args = getArgs(frame, {wrappers = 'Template:Location map~'})
end
local mapnames = {}
if not map then
if args[1] then
map = {}
for mapname in mw.text.gsplit(args[1], '#', true) do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
mapnames[#mapnames + 1] = mapname
end
if #map == 1 then map = map[1] end
else
map = p.getMapParams('World', frame)
args[1] = 'World'
end
end
if type(map) == 'table' then
local outputs = {}
local oldargs = args[1]
for k,v in ipairs(map) do
args[1] = mapnames[k]
outputs[k] = tostring(p.mark(frame, args, v))
end
args[1] = oldargs
return table.concat(outputs, '#PlaceList#') .. '#PlaceList#'
end
local x, y, longitude, latitude
longitude = decdeg(args.lon_deg, args.lon_min, args.lon_sec, args.lon_dir, args.long, 'longitude')
latitude = decdeg(args.lat_deg, args.lat_min, args.lat_sec, args.lat_dir, args.lat, 'latitude')
if args.excludefrom then
-- If this mark is to be excluded from certain maps entirely (useful in the context of multiple maps)
for exclusionmap in mw.text.gsplit(args.excludefrom, '#', true) do
-- Check if this map is excluded. If so, return an empty string.
if args[1] == exclusionmap then
return ''
end
end
end
local builder = mw.html.create()
local currentTitle = mw.title.getCurrentTitle()
if args.coordinates then
-- Temporarily removed to facilitate infobox conversion. See [[Wikipedia:Coordinates in infoboxes]]
-- if longitude or latitude then
-- error('Coordinates from [[Module:Coordinates]] and individual coordinates cannot both be provided')
-- end
longitude = coord2text('longitude', args.coordinates)
latitude = coord2text('latitude', args.coordinates)
elseif not longitude and not latitude and args.useWikidata then
-- If they didn't provide either coordinate, try Wikidata. If they provided one but not the other, don't.
local entity = mw.wikibase.getEntity()
if entity and entity.claims and entity.claims.P625 and entity.claims.P625[1].mainsnak.snaktype == 'value' then
local value = entity.claims.P625[1].mainsnak.datavalue.value
longitude, latitude = value.longitude, value.latitude
end
if args.link and (currentTitle.namespace == 0) then
builder:wikitext('[[Category:Location maps with linked markers with coordinates from Wikidata]]')
end
end
if not longitude then
error('No value was provided for longitude')
elseif not latitude then
error('No value was provided for latitude')
end
if currentTitle.namespace > 0 then
if (not args.lon_deg) ~= (not args.lat_deg) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Degrees]]')
elseif (not args.lon_min) ~= (not args.lat_min) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Minutes]]')
elseif (not args.lon_sec) ~= (not args.lat_sec) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Seconds]]')
elseif (not args.lon_dir) ~= (not args.lat_dir) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Hemisphere]]')
elseif (not args.long) ~= (not args.lat) then
builder:wikitext('[[Category:Location maps with different longitude and latitude precisions|Decimal]]')
end
end
if ((tonumber(args.lat_deg) or 0) < 0) and ((tonumber(args.lat_min) or 0) ~= 0 or (tonumber(args.lat_sec) or 0) ~= 0 or (args.lat_dir and args.lat_dir ~='')) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if ((tonumber(args.lon_deg) or 0) < 0) and ((tonumber(args.lon_min) or 0) ~= 0 or (tonumber(args.lon_sec) or 0) ~= 0 or (args.lon_dir and args.lon_dir ~= '')) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if (((tonumber(args.lat_min) or 0) < 0) or ((tonumber(args.lat_sec) or 0) < 0)) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if (((tonumber(args.lon_min) or 0) < 0) or ((tonumber(args.lon_sec) or 0) < 0)) then
builder:wikitext('[[Category:Location maps with negative degrees and minutes or seconds]]')
end
if args.skew or args.lon_shift or args.markhigh then
mw.log('Removed parameter used in invocation.')
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
local key = (args.skew and 'skew' or '') ..
(args.lon_shift and 'lon_shift' or '') ..
(args.markhigh and 'markhigh' or '')
builder:wikitext('[[Category:Location maps with removed parameters|' .. key ..' ]]')
end
end
if map('x') ~= '' then
x = tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude })))
else
x = tonumber(getX(longitude, map('left'), map('right')))
end
if map('y') ~= '' then
y = tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude })))
else
y = tonumber(getY(latitude, map('top'), map('bottom')))
end
if (x < 0 or x > 100 or y < 0 or y > 100) and not args.outside then
mw.log('Mark placed outside map boundaries without outside flag set. x = ' .. x .. ', y = ' .. y)
local parent = frame:getParent()
if parent then
mw.log('Parent is ' .. parent:getTitle())
end
mw.logObject(args, 'args')
if currentTitle.namespace == 0 then
local key = currentTitle.prefixedText
builder:wikitext('[[Category:Location maps with marks outside map and outside parameter not set|' .. key .. ' ]]')
end
end
local mark = args.mark or map('mark')
if mark == '' then
mark = 'Red pog.svg'
end
local marksize = tonumber(args.marksize) or tonumber(map('marksize')) or 8
local imageDiv = markImageDiv(mark, marksize, args.label or mw.title.getCurrentTitle().text, args.link or '', args.alt, args[2])
local label_size = args.label_size or 91
local labelDiv
if args.label and args.position ~= 'none' then
labelDiv = markLabelDiv(args.label, label_size, args.label_width or 6, args.position, args.background, x, marksize)
end
return builder:node(markOuterDiv(x, y, imageDiv, labelDiv, label_size))
end
local function switcherSeparate(s)
if s == nil then return {} end
local retval = {}
for i in string.gmatch(s .. '#', '([^#]*)#') do
i = mw.text.trim(i)
retval[#retval + 1] = (i ~= '' and i)
end
return retval
end
function p.main(frame, args, map)
local caption_list = {}
if not args then
args = getArgs(frame, {wrappers = 'Template:Location map', valueFunc = p.valueFunc})
end
if args.useWikidata == nil then
args.useWikidata = true
end
if not map then
if args[1] then
map = {}
for mapname in string.gmatch(args[1], '[^#]+') do
map[#map + 1] = p.getMapParams(mw.ustring.gsub(mapname, '^%s*(.-)%s*$', '%1'), frame)
end
if args['caption'] then
if args['caption'] == "" then
while #caption_list < #map do
caption_list[#caption_list + 1] = args['caption']
end
else
for caption in mw.text.gsplit(args['caption'], '##', true) do
caption_list[#caption_list + 1] = caption
end
end
end
if #map == 1 then map = map[1] end
else
map = p.getMapParams('World', frame)
end
end
if type(map) == 'table' then
local altmaps = switcherSeparate(args.AlternativeMap)
if #altmaps > #map then
error(string.format('%d AlternativeMaps were provided, but only %d maps were provided', #altmaps, #map))
end
local overlays = switcherSeparate(args.overlay_image)
if #overlays > #map then
error(string.format('%d overlay_images were provided, but only %d maps were provided', #overlays, #map))
end
if #caption_list > #map then
error(string.format('%d captions were provided, but only %d maps were provided', #caption_list, #map))
end
local outputs = {}
args.autoSwitcherLabel = true
for k,v in ipairs(map) do
args.AlternativeMap = altmaps[k]
args.overlay_image = overlays[k]
args.caption = caption_list[k]
outputs[k] = p.main(frame, args, v)
end
return '<div class="switcher-container">' .. table.concat(outputs) .. '</div>'
else
return p.top(frame, args, map) .. tostring( p.mark(frame, args, map) ) .. p.bottom(frame, args, map)
end
end
return p
ez2g6smljgzkccjvhykw6oka8gzsngk
Module:Mapframe
828
87
10106
288
2026-04-02T07:29:48Z
De-Invincible
36
10106
Scribunto
text/plain
-- Note: Originally written on English Wikipedia at https://en.wikipedia.org/wiki/Module:Mapframe
--[[----------------------------------------------------------------------------
##### Localisation (L10n) settings #####
Replace values in quotes ("") with localised values
----------------------------------------------------------------------------]]--
local L10n = {}
-- Modue dependencies
local transcluder -- local copy of https://www.mediawiki.org/wiki/Module:Transcluder loaded lazily
-- "strict" should not be used, at least until all other modules which require this module are not using globals.
-- Template parameter names (unnumbered versions only)
-- Specify each as either a single string, or a table of strings (aliases)
-- Aliases are checked left-to-right, i.e. `{ "one", "two" }` is equivalent to using `{{{one| {{{two|}}} }}}` in a template
L10n.para = {
display = "display",
type = "type",
id = { "id", "ids" },
from = "from",
raw = "raw",
title = "title",
description = "description",
strokeColor = { "stroke-color", "stroke-colour" },
strokeWidth = "stroke-width",
strokeOpacity = "stroke-opacity",
fill = "fill",
fillOpacity = "fill-opacity",
coord = "coord",
marker = "marker",
markerColor = { "marker-color", "marker-colour" },
markerSize = "marker-size",
radius = { "radius", "radius_m" },
radiusKm = "radius_km",
radiusFt = "radius_ft",
radiusMi = "radius_mi",
edges = "edges",
text = "text",
icon = "icon",
zoom = "zoom",
frame = "frame",
plain = "plain",
frameWidth = "frame-width",
frameHeight = "frame-height",
frameCoordinates = { "frame-coordinates", "frame-coord" },
frameLatitude = { "frame-lat", "frame-latitude" },
frameLongitude = { "frame-long", "frame-longitude" },
frameAlign = "frame-align",
switch = "switch",
overlay = "overlay",
overlayBorder = "overlay-border",
overlayHorizontalAlignment = "overlay-horizontal-alignment",
overlayVerticalAlignment = "overlay-vertical-alignment",
overlayHorizontalOffset = "overlay-horizontal-offset",
overlayVerticalOffset = "overlay-vertical-offset"
}
-- Names of other templates this module can extract coordinates from
L10n.template = {
coord = { -- The coord template, as well as templates with output that contains {{coord}}
"Coord", "Coord/sandbox",
"NRHP row", "NRHP row/sandbox",
"WikidataCoord", "WikidataCoord/sandbox", "Wikidatacoord", "Wikidata coord"
}
}
-- Error messages
L10n.error = {
badDisplayPara = "Invalid display parameter",
noCoords = "Coordinates must be specified on Wikidata or in |" .. ( type(L10n.para.coord)== 'table' and L10n.para.coord[1] or L10n.para.coord ) .. "=",
wikidataCoords = "Coordinates not found on Wikidata",
noCircleCoords = "Circle centre coordinates must be specified, or available via Wikidata",
negativeRadius = "Circle radius must be a positive number",
noRadius = "Circle radius must be specified",
negativeEdges = "Circle edges must be a positive number",
noSwitchPara = "Found only one switch value in |" .. ( type(L10n.para.switch)== 'table' and L10n.para.switch[1] or L10n.para.switch ) .. "=",
oneSwitchLabel = "Found only one label in |" .. ( type(L10n.para.switch)== 'table' and L10n.para.switch[1] or L10n.para.switch ) .. "=",
noSwitchLists = "At least one parameter must have a SWITCH: list",
switchMismatches = "All SWITCH: lists must have the same number of values",
-- "%s" and "%d" tokens will be replaced with strings and numbers when used
oneSwitchValue = "Found only one switch value in |%s=",
fewerSwitchLabels = "Found %d switch values but only %d labels in |" .. ( type(L10n.para.switch)== 'table' and L10n.para.switch[1] or L10n.para.switch ) .. "=",
noNamedCoords = "No named coordinates found in %s"
}
-- Other strings
L10n.str = {
-- valid values for display parameter, e.g. (|display=inline) or (|display=title) or (|display=inline,title) or (|display=title,inline)
inline = "inline",
title = "title",
dsep = ",", -- separator between inline and title (comma in the example above)
-- valid values for type paramter
line = "line", -- geoline feature (e.g. a road)
shape = "shape", -- geoshape feature (e.g. a state or province)
shapeInverse = "shape-inverse", -- geomask feature (the inverse of a geoshape)
data = "data", -- geoJSON data page on Commons
point = "point", -- single point feature (coordinates)
circle = "circle", -- circular area around a point
named = "named", -- all named coordinates in an article or section
-- Keyword to indicate a switch list. Must NOT use the special characters ^$()%.[]*+-?
switch = "SWITCH",
-- valid values for icon, frame, and plain parameters
affirmedWords = ' '..table.concat({
"add",
"added",
"affirm",
"affirmed",
"include",
"included",
"on",
"true",
"yes",
"y"
}, ' ')..' ',
declinedWords = ' '..table.concat({
"decline",
"declined",
"exclude",
"excluded",
"false",
"none",
"not",
"no",
"n",
"off",
"omit",
"omitted",
"remove",
"removed"
}, ' ')..' '
}
-- Default values for parameters
L10n.defaults = {
display = L10n.str.inline,
text = "Map",
frameWidth = "300",
frameHeight = "200",
frameAlign = "right",
markerColor = "5E74F3",
markerSize = nil,
strokeColor = "#ff0000",
strokeWidth = 6,
edges = 32, -- number of edges used to approximate a circle
overlayBorder = "1px solid white",
overlayHorizontalAlignment = "right",
overlayHorizontalOffset = "0",
overlayVerticalAlignment = "bottom",
overlayVerticalOffset = "0"
}
-- #### End of L10n settings ####
--[[----------------------------------------------------------------------------
Utility methods
----------------------------------------------------------------------------]]--
local util = {}
--[[
Looks up a parameter value based on the id (a key from the L10n.para table) and
optionally a suffix, for parameters that can be suffixed (e.g. type2 is type
with suffix 2).
@param {table} args key-value pairs of parameter names and their values
@param {string} param_id id for parameter name (key from the L10n.para table)
@param {string} [suffix] suffix for parameter name
@returns {string|nil} parameter value if found, or nil if not found
]]--
function util.getParameterValue(args, param_id, suffix)
suffix = suffix or ''
if type( L10n.para[param_id] ) ~= 'table' then
return args[L10n.para[param_id]..suffix]
end
for _i, paramAlias in ipairs(L10n.para[param_id]) do
if args[paramAlias..suffix] then
return args[paramAlias..suffix]
end
end
return nil
end
--[[
Trim whitespace from args, and remove empty args. Also fix control characters.
@param {table} argsTable
@returns {table} trimmed args table
]]--
function util.trimArgs(argsTable)
local cleanArgs = {}
for key, val in pairs(argsTable) do
if type(key) == 'string' and type(val) == 'string' then
val = val:match('^%s*(.-)%s*$')
if val ~= '' then
-- control characters inside json need to be escaped, but stripping them is simpler
-- See also T214984
-- However, *don't* strip control characters from wikitext (text or description parameters) or you'll break strip markers
-- Alternatively it might be better to only strip control char from raw parameter content
if util.matchesParam('text', key) or util.matchesParam('description', key, key:gsub('^%D+(%d+)$', '%1') ) then
cleanArgs[key] = val
else
cleanArgs[key] = val:gsub('%c',' ')
end
end
else
cleanArgs[key] = val
end
end
return cleanArgs
end
--[[
Check if a parameter name matches an unlocalized parameter key
@param {string} key - the unlocalized parameter name to search through
@param {string} name - the localized parameter name to check
@param {string|nil} - an optional suffix to apply to the value(s) from the localization key
@returns {boolean} true if the name matches the parameter, false otherwise
]]--
function util.matchesParam(key, name, suffix)
local param = L10n.para[key]
suffix = suffix or ''
if type(param) == 'table' then
for _, v in pairs(param) do
if (v .. suffix) == name then return true end
end
return false
end
return ((param .. suffix) == name)
end
--[[
Check if a value is affirmed (one of the values in L10n.str.affirmedWords)
@param {string} val Value to be checked
@returns {boolean} true if affirmed, false otherwise
]]--
function util.isAffirmed(val)
if not(val) then return false end
return string.find(L10n.str.affirmedWords, ' '..val..' ', 1, true ) and true or false
end
--[[
Check if a value is declined (one of the values in L10n.str.declinedWords)
@param {string} val Value to be checked
@returns {boolean} true if declined, false otherwise
]]--
function util.isDeclined(val)
if not(val) then return false end
return string.find(L10n.str.declinedWords , ' '..val..' ', 1, true ) and true or false
end
--[[
Check if the name of a template matches the known coord templates or wrappers
(in L10n.template.coord). The name is normalised when checked, so e.g. the names
"Coord", "coord", and " Coord" all return true.
@param {string} name
@returns {boolean} true if it is a coord template or wrapper, false otherwise
]]--
function util.isCoordTemplateOrWrapper(name)
name = mw.text.trim(name)
local inputTitle = mw.title.new(name, 'Template')
if not inputTitle then
return false
end
-- Create (or reuse) mw.title objects for each known coord template/wrapper.
-- Stored in L10n.template.title so that they don't need to be recreated
-- each time this function is called
if not L10n.template.titles then
L10n.template.titles = {}
for _, v in pairs(L10n.template.coord) do
table.insert(L10n.template.titles, mw.title.new(v, 'Template'))
end
end
for _, templateTitle in pairs(L10n.template.titles) do
if mw.title.equals(inputTitle, templateTitle) then
return true
end
end
return false
end
--[[
Recursively extract coord templates which have a name parameter.
@param {string} wikitext
@returns {table} table sequence of coord templates
]]--
function util.extractCoordTemplates(wikitext)
local output = {}
local templates = mw.ustring.gmatch(wikitext, '{%b{}}')
local subtemplates = {}
for template in templates do
local templateName = mw.ustring.match(template, '{{([^}|]+)')
local nameParam = mw.ustring.match(template, "|%s*name%s*=%s*[^}|]+")
if util.isCoordTemplateOrWrapper(templateName) then
if nameParam then table.insert(output, template) end
elseif mw.ustring.find(mw.ustring.sub(template, 2), "{{") then
local subOutput = util.extractCoordTemplates(mw.ustring.sub(template, 2))
for _, t in pairs(subOutput) do
table.insert(output, t)
end
end
end
-- ensure coords are not using title display
for k, v in pairs(output) do
output[k] = mw.ustring.gsub(v, "|%s*display%s*=[^|}]+", "|display=inline")
end
return output
end
--[[
Gets all named coordiates from a page or a section of a page.
@param {string|nil} page Page name, or name#section, to get named coordinates
from. If the name is omitted, i.e. #section or nil or empty string, then
the current page will be used.
@returns {table} sequence of {coord, name, description} tables where coord is
the coordinates in a format suitable for #util.parseCoords, name is a string,
and description is a string (coordinates in a format suitable for displaying
to the reader). If for some reason the name can't be found, the description
is nil and the name contains display-format coordinates.
@throws {L10n.error.noNamedCoords} if no named coordinates are found.
]]--
function util.getNamedCoords(page)
if transcluder == nil then
-- load [[Modul:Transcluder]] lazily so it is only transcluded on pages that
-- actually use named coordinates
transcluder = require("Module:Transcluder")
end
local parts = mw.text.split(page or "", "#", true)
local name = parts[1] == "" and mw.title.getCurrentTitle().prefixedText or parts[1]
local section = parts[2]
local pageWikitext = transcluder.get(section and name.."#"..section or name)
local coordTemplates = util.extractCoordTemplates(pageWikitext)
if #coordTemplates == 0 then error(string.format(L10n.error.noNamedCoords, page or name), 0) end
local frame = mw.getCurrentFrame()
local sep = "________"
local expandedContent = frame:preprocess(table.concat(coordTemplates, sep))
local expandedTemplates = mw.text.split(expandedContent, sep)
local namedCoords = {}
for _, expandedTemplate in pairs(expandedTemplates) do
local coord = mw.ustring.match(expandedTemplate, "<span class=\"geo%-dec\".->(.-)</span>")
if coord then
local name = (
-- name specified by a wrapper template, e.g [[Article|Name]]
mw.ustring.match(expandedTemplate, "<span class=\"mapframe%-coord%-name\">(.-)</span>") or
-- name passed into coord template
mw.ustring.match(expandedTemplate, "<span class=\"fn org\">(.-)</span>") or
-- default to the coordinates if the name can't be retrieved
coord
)
local description = name ~= coord and coord
local coord = mw.ustring.gsub(coord, "[° ]", "_")
table.insert(namedCoords, {coord=coord, name=name, description=description})
end
end
if #namedCoords == 0 then error(string.format(L10n.error.noNamedCoords, page or name), 0) end
return namedCoords
end
--[[
Parse coordinate values from the params passed in a GeoHack url (such as
//tools.wmflabs.org/geohack/geohack.php?pagename=Example¶ms=1_2_N_3_4_W_ or
//tools.wmflabs.org/geohack/geohack.php?pagename=Example¶ms=1.23_S_4.56_E_ )
or non-url string in the same format (such as `1_2_N_3_4_W_` or `1.23_S_4.56_E_`)
@param {string} coords string containing coordinates
@returns {number, number} latitude, longitude
]]--
function util.parseCoords(coords)
local coordsPatt
if mw.ustring.find(coords, "params=", 1, true) then
-- prevent false matches from page name, e.g. ?pagename=Lorem_S._Ipsum
coordsPatt = 'params=([_%.%d]+[NS][_%.%d]+[EW])'
else
-- not actually a geohack url, just the same format
coordsPatt = '[_%.%d]+[NS][_%.%d]+[EW]'
end
local parts = mw.text.split((mw.ustring.match(coords, coordsPatt) or ''), '_')
local lat_d = tonumber(parts[1])
local lat_m = tonumber(parts[2]) -- nil if coords are in decimal format
local lat_s = lat_m and tonumber(parts[3]) -- nil if coords are either in decimal format or degrees and minutes only
local lat = lat_d + (lat_m or 0)/60 + (lat_s or 0)/3600
if parts[#parts/2] == 'S' then
lat = lat * -1
end
local long_d = tonumber(parts[1+#parts/2])
local long_m = tonumber(parts[2+#parts/2]) -- nil if coords are in decimal format
local long_s = long_m and tonumber(parts[3+#parts/2]) -- nil if coords are either in decimal format or degrees and minutes only
local long = long_d + (long_m or 0)/60 + (long_s or 0)/3600
if parts[#parts] == 'W' then
long = long * -1
end
return lat, long
end
--[[
Get coordinates from a Wikidata item
@param {string} item_id Wikidata item id (Q number)
@returns {number, number} latitude, longitude
@throws {L10n.error.noCoords} if item_id is invalid or the item does not exist
@throws {L10n.error.wikidataCoords} if the the item does not have a P625
statement (coordinates), or it is set to "no value"
]]--
function util.wikidataCoords(item_id)
if not (item_id and mw.wikibase.isValidEntityId(item_id) and mw.wikibase.entityExists(item_id)) then
error(L10n.error.noCoords, 0)
end
local coordStatements = mw.wikibase.getBestStatements(item_id, 'P625')
if not coordStatements or #coordStatements == 0 then
error(L10n.error.wikidataCoords, 0)
end
local hasNoValue = ( coordStatements[1].mainsnak and (coordStatements[1].mainsnak.snaktype == 'novalue' or coordStatements[1].mainsnak.snaktype == 'somevalue') )
if hasNoValue then
error(L10n.error.wikidataCoords, 0)
end
local wdCoords = coordStatements[1]['mainsnak']['datavalue']['value']
return tonumber(wdCoords['latitude']), tonumber(wdCoords['longitude'])
end
--[[
Creates a polygon that approximates a circle
@param {number} lat Latitude
@param {number} long Longitude
@param {number} radius Radius in metres
@param {number} n Number of edges for the polygon
@returns {table} sequence of {latitude, longitude} table sequences, where
latitude and longitude are both numbers
]]--
function util.circleToPolygon(lat, long, radius, n) -- n is number of edges
-- Based on https://github.com/gabzim/circle-to-polygon, ISC licence
local function offset(cLat, cLon, distance, bearing)
local lat1 = math.rad(cLat)
local lon1 = math.rad(cLon)
local dByR = distance / 6378137 -- distance divided by 6378137 (radius of the earth) wgs84
local lat = math.asin(
math.sin(lat1) * math.cos(dByR) +
math.cos(lat1) * math.sin(dByR) * math.cos(bearing)
)
local lon = lon1 + math.atan2(
math.sin(bearing) * math.sin(dByR) * math.cos(lat1),
math.cos(dByR) - math.sin(lat1) * math.sin(lat)
)
return {math.deg(lon), math.deg(lat)}
end
local coordinates = {};
local i = 0;
while i < n do
table.insert(coordinates,
offset(lat, long, radius, (2*math.pi*i*-1)/n)
)
i = i + 1
end
table.insert(coordinates, offset(lat, long, radius, 0))
return coordinates
end
--[[
Get the number of key-value pairs in a table, which might not be a sequence.
@param {table} t
@returns {number} count of key-value pairs
]]--
function util.tableCount(t)
local count = 0
for k, v in pairs(t) do
count = count + 1
end
return count
end
--[[
For a table where the values are all tables, returns either the util.tableCount
of the subtables if they are all the same, or nil if they are not all the same.
@param {table} t
@returns {number|nil} count of key-value pairs of subtable, or nil if subtables
have different counts
]]--
function util.subTablesCount(t)
local count = nil
for k, v in pairs(t) do
if count == nil then
count = util.tableCount(v)
elseif count ~= util.tableCount(v) then
return nil
end
end
return count
end
--[[
Splits a list into a table sequence. The items in the list may be separated by
commas, or by semicolons (if items may contain commas), or by "###" (if items
may contain semicolons).
@param {string} listString
@returns {table} sequence of list items
]]--
function util.tableFromList(listString)
if type(listString) ~= "string" or listString == "" then return nil end
local separator = (mw.ustring.find(listString, "###", 0, true ) and "###") or
(mw.ustring.find(listString, ";", 0, true ) and ";") or ","
local pattern = "%s*"..separator.."%s*"
return mw.text.split(listString, pattern)
end
-- Boolean in outer scope indicating if Kartographer should be able to
-- automatically calculate coordinates (see phab:T227402)
local coordsDerivedFromFeatures = false;
--[[----------------------------------------------------------------------------
Make methods: These take in a table of arguments, and return either a string
or a table to be used in the eventual output.
----------------------------------------------------------------------------]]--
local make = {}
--[[
Makes content to go inside the maplink or mapframe tag.
@param {table} args
@returns {string} tag content
]]--
function make.content(args)
if util.getParameterValue(args, 'raw') then
coordsDerivedFromFeatures = true -- Kartographer should be able to automatically calculate coords from raw geoJSON
return util.getParameterValue(args, 'raw')
end
local content = {}
local argsExpanded = {}
for k, v in pairs(args) do
local index = string.match( k, '^[^0-9]+([0-9]*)$' )
if index ~= nil then
local indexNumber = ''
if index ~= '' then
indexNumber = tonumber(index)
else
indexNumber = 1
end
if argsExpanded[indexNumber] == nil then
argsExpanded[indexNumber] = {}
end
argsExpanded[indexNumber][ string.gsub(k, index, '') ] = v
end
end
for contentIndex, contentArgs in pairs(argsExpanded) do
local argType = util.getParameterValue(contentArgs, "type")
-- Kartographer automatically calculates coords if geolines/shapes are used (T227402)
if not coordsDerivedFromFeatures then
coordsDerivedFromFeatures = ( argType == L10n.str.line or argType == L10n.str.shape ) and true or false
end
if argType == L10n.str.named then
local namedCoords = util.getNamedCoords(util.getParameterValue(contentArgs, "from"))
local typeKey = type(L10n.para.type) == "table" and L10n.para.type[1] or L10n.para.type
local coordKey = type(L10n.para.coord) == "table" and L10n.para.coord[1] or L10n.para.coord
local titleKey = type(L10n.para.title) == "table" and L10n.para.title[1] or L10n.para.title
local descKey = type(L10n.para.description) == "table" and L10n.para.description[1] or L10n.para.description
for _, namedCoord in pairs(namedCoords) do
contentArgs[typeKey] = "point"
contentArgs[coordKey] = namedCoord.coord
contentArgs[titleKey] = namedCoord.name
contentArgs[descKey] = namedCoord.description
content[#content+1] = make.contentJson(contentArgs)
end
else
content[#content + 1] = make.contentJson(contentArgs)
end
end
--Single item, no array needed
if #content==1 then return content[1] end
--Multiple items get placed in a FeatureCollection
local contentArray = '[\n' .. table.concat( content, ',\n') .. '\n]'
return contentArray
end
--[[
Make coordinates from the coord arg, or the id arg, or the current page's
Wikidata item.
@param {table} args
@param {boolean} [plainOutput]
@returns {Mixed} Either:
{number, number} latitude, longitude if plainOutput is true; or
{table} table sequence of longitude, then latitude (gives the required format
for GeoJSON when encoded)
]]--
function make.coords(args, plainOutput)
local coords, lat, long
local frame = mw.getCurrentFrame()
if util.getParameterValue(args, 'coord') then
coords = frame:preprocess( util.getParameterValue(args, 'coord') )
lat, long = util.parseCoords(coords)
else
lat, long = util.wikidataCoords(util.getParameterValue(args, 'id') or mw.wikibase.getEntityIdForCurrentPage())
end
if plainOutput then
return lat, long
end
return {[0] = long, [1] = lat}
end
--[[
Makes a table of coordinates that approximate a circle.
@param {table} args
@returns {table} sequence of {latitude, longitude} table sequences, where
latitude and longitude are both numbers
@throws {L10n.error.noCircleCoords} if centre coordinates are not specified
@throws {L10n.error.noRadius} if radius is not specified
@throws {L10n.error.negativeRadius} if radius is negative or zero
@throws {L10n.error.negativeEdges} if edges is negative or zero
]]--
function make.circleCoords(args)
local lat, long = make.coords(args, true)
local radius = util.getParameterValue(args, 'radius')
if not radius then
radius = util.getParameterValue(args, 'radiusKm') and tonumber(util.getParameterValue(args, 'radiusKm'))*1000
if not radius then
radius = util.getParameterValue(args, 'radiusMi') and tonumber(util.getParameterValue(args, 'radiusMi'))*1609.344
if not radius then
radius = util.getParameterValue(args, 'radiusFt') and tonumber(util.getParameterValue(args, 'radiusFt'))*0.3048
end
end
end
local edges = util.getParameterValue(args, 'edges') or L10n.defaults.edges
if not lat or not long then
error(L10n.error.noCircleCoords, 0)
elseif not radius then
error(L10n.error.noRadius, 0)
elseif tonumber(radius) <= 0 then
error(L10n.error.negativeRadius, 0)
elseif tonumber(edges) <= 0 then
error(L10n.error.negativeEdges, 0)
end
return util.circleToPolygon(lat, long, radius, tonumber(edges))
end
--[[
Makes JSON data for a feature
@param contentArgs args for this feature. Keys must be the non-suffixed version
of the parameter names, i.e. use type, stroke, fill,... rather than type3,
stroke3, fill3,...
@returns {string} JSON encoded data
]]--
function make.contentJson(contentArgs)
local data = {}
if util.getParameterValue(contentArgs, 'type') == L10n.str.point or util.getParameterValue(contentArgs, 'type') == L10n.str.circle then
local isCircle = util.getParameterValue(contentArgs, 'type') == L10n.str.circle
data.type = "Feature"
data.geometry = {
type = isCircle and "LineString" or "Point",
coordinates = isCircle and make.circleCoords(contentArgs) or make.coords(contentArgs)
}
data.properties = {
title = util.getParameterValue(contentArgs, 'title') or mw.getCurrentFrame():getParent():getTitle()
}
if isCircle then
-- TODO: This is very similar to below, should be extracted into a function
data.properties.stroke = util.getParameterValue(contentArgs, 'strokeColor') or L10n.defaults.strokeColor
data.properties["stroke-width"] = tonumber(util.getParameterValue(contentArgs, 'strokeWidth')) or L10n.defaults.strokeWidth
local strokeOpacity = util.getParameterValue(contentArgs, 'strokeOpacity')
if strokeOpacity then
data.properties['stroke-opacity'] = tonumber(strokeOpacity)
end
local fill = util.getParameterValue(contentArgs, 'fill')
if fill then
data.properties.fill = fill
local fillOpacity = util.getParameterValue(contentArgs, 'fillOpacity')
data.properties['fill-opacity'] = fillOpacity and tonumber(fillOpacity) or 0.6
end
else -- is a point
local markerSymbol = util.getParameterValue(contentArgs, 'marker') or L10n.defaults.marker
-- allow blank to be explicitly specified, for overriding infoboxes or other templates with a default value
if markerSymbol ~= "blank" then
data.properties["marker-symbol"] = markerSymbol
end
data.properties["marker-color"] = util.getParameterValue(contentArgs, 'markerColor') or L10n.defaults.markerColor
data.properties["marker-size"] = util.getParameterValue(contentArgs, 'markerSize') or L10n.defaults.markerSize
end
else
data.type = "ExternalData"
if util.getParameterValue(contentArgs, 'type') == L10n.str.data or util.getParameterValue(contentArgs, 'from') then
data.service = "page"
elseif util.getParameterValue(contentArgs, 'type') == L10n.str.line then
data.service = "geoline"
elseif util.getParameterValue(contentArgs, 'type') == L10n.str.shape then
data.service = "geoshape"
elseif util.getParameterValue(contentArgs, 'type') == L10n.str.shapeInverse then
data.service = "geomask"
end
if util.getParameterValue(contentArgs, 'id') or (not (util.getParameterValue(contentArgs, 'from')) and mw.wikibase.getEntityIdForCurrentPage()) then
data.ids = util.getParameterValue(contentArgs, 'id') or mw.wikibase.getEntityIdForCurrentPage()
else
data.title = util.getParameterValue(contentArgs, 'from')
end
data.properties = {
stroke = util.getParameterValue(contentArgs, 'strokeColor') or L10n.defaults.strokeColor,
["stroke-width"] = tonumber(util.getParameterValue(contentArgs, 'strokeWidth')) or L10n.defaults.strokeWidth
}
local strokeOpacity = util.getParameterValue(contentArgs, 'strokeOpacity')
if strokeOpacity then
data.properties['stroke-opacity'] = tonumber(strokeOpacity)
end
local fill = util.getParameterValue(contentArgs, 'fill')
if fill and (data.service == "geoshape" or data.service == "geomask") then
data.properties.fill = fill
local fillOpacity = util.getParameterValue(contentArgs, 'fillOpacity')
if fillOpacity then
data.properties['fill-opacity'] = tonumber(fillOpacity)
end
end
end
data.properties.title = util.getParameterValue(contentArgs, 'title') or mw.title.getCurrentTitle().text
if util.getParameterValue(contentArgs, 'description') then
data.properties.description = util.getParameterValue(contentArgs, 'description')
end
return mw.text.jsonEncode(data)
end
--[[
Makes attributes for the maplink or mapframe tag.
@param {table} args
@param {boolean} [isTitle] Tag is to be displayed in the title of page rather
than inline
@returns {table<string,string>} key-value pairs of attribute names and values
]]--
function make.tagAttribs(args, isTitle)
local attribs = {}
if util.getParameterValue(args, 'zoom') then
attribs.zoom = util.getParameterValue(args, 'zoom')
end
if util.isDeclined(util.getParameterValue(args, 'icon')) then
attribs.class = "no-icon"
end
if util.getParameterValue(args, 'type') == L10n.str.point and not coordsDerivedFromFeatures then
local lat, long = make.coords(args, 'plainOutput')
attribs.latitude = tostring(lat)
attribs.longitude = tostring(long)
end
if util.isAffirmed(util.getParameterValue(args, 'frame')) and not(isTitle) then
attribs.width = util.getParameterValue(args, 'frameWidth') or L10n.defaults.frameWidth
attribs.height = util.getParameterValue(args, 'frameHeight') or L10n.defaults.frameHeight
if util.getParameterValue(args, 'frameCoordinates') then
local frameLat, frameLong = util.parseCoords(util.getParameterValue(args, 'frameCoordinates'))
attribs.latitude = frameLat
attribs.longitude = frameLong
else
if util.getParameterValue(args, 'frameLatitude') then
attribs.latitude = util.getParameterValue(args, 'frameLatitude')
end
if util.getParameterValue(args, 'frameLongitude') then
attribs.longitude = util.getParameterValue(args, 'frameLongitude')
end
end
if not attribs.latitude and not attribs.longitude and not coordsDerivedFromFeatures then
local success, lat, long = pcall(util.wikidataCoords, util.getParameterValue(args, 'id') or mw.wikibase.getEntityIdForCurrentPage())
if success then
attribs.latitude = tostring(lat)
attribs.longitude = tostring(long)
end
end
if util.getParameterValue(args, 'frameAlign') then
attribs.align = util.getParameterValue(args, 'frameAlign')
end
if util.isAffirmed(util.getParameterValue(args, 'plain')) then
attribs.frameless = "1"
else
attribs.text = util.getParameterValue(args, 'text') or L10n.defaults.text
end
else
attribs.text = util.getParameterValue(args, 'text') or L10n.defaults.text
end
return attribs
end
--[[
Makes maplink wikitext that will be located in the top-right of the title of the
page (the same place where coords with |display=title are positioned).
@param {table} args
@param {string} tagContent Content for the maplink tag
@returns {string}
]]--
function make.titleOutput(args, tagContent)
local titleTag = mw.text.tag('maplink', make.tagAttribs(args, true), tagContent)
local spanAttribs = {
style = "font-size: small;",
id = "coordinates"
}
return mw.text.tag('span', spanAttribs, titleTag)
end
--[[
Makes maplink or mapframe wikitext that will be located inline.
@param {table} args
@param {string} tagContent Content for the maplink tag
@returns {string}
]]--
function make.inlineOutput(args, tagContent)
local tagName = 'maplink'
if util.getParameterValue(args, 'frame') then
tagName = 'mapframe'
end
return mw.text.tag(tagName, make.tagAttribs(args), tagContent)
end
--[[
Makes the HTML required for the swicther to work, including the templatestyles
tag.
@param {table} params table sequence of {map, label} tables
@param {string} params{}.map Wikitext for mapframe map
@param {string} params{}.label Label text for swicther option
@param {table} options
@param {string} options.alignment "left" or "center" or "right"
@param {boolean} options.isThumbnail Display in a thumbnail
@param {string} options.width Width of frame, e.g. "200"
@param {string} [options.caption] Caption wikitext for thumnail
@retruns {string} swicther HTML
]]--
function make.switcherHtml(params, options)
options = options or {}
local frame = mw.getCurrentFrame()
local styles = frame:extensionTag{
name = "templatestyles",
args = {src = "Template:Maplink/styles-multi.css"}
}
local container = mw.html.create("div")
:addClass("switcher-container")
:addClass("mapframe-multi-container")
if options.alignment == "left" or options.alignment == "right" then
container:addClass("float"..options.alignment)
else -- alignment is "center"
container:addClass("center")
end
for i = 1, #params do
container
:tag("div")
:wikitext(params[i].map)
:tag("span")
:addClass("switcher-label")
:css("display", "none")
:wikitext(mw.text.trim(params[i].label))
end
if not options.isThumbnail then
return styles .. tostring(container)
end
local classlist = container:getAttr("class")
classlist = mw.ustring.gsub(classlist, "%a*"..options.alignment, "")
container:attr("class", classlist)
local outerCountainer = mw.html.create("div")
:addClass("mapframe-multi-outer-container")
:addClass("mw-kartographer-container")
:addClass("thumb")
if options.alignment == "left" or options.alignment == "right" then
outerCountainer:addClass("t"..options.alignment)
else -- alignment is "center"
outerCountainer
:addClass("tnone")
:addClass("center")
end
outerCountainer
:tag("div")
:addClass("thumbinner")
:css("width", options.width.."px")
:node(container)
:node(options.caption and mw.html.create("div")
:addClass("thumbcaption")
:wikitext(options.caption)
)
return styles .. tostring(outerCountainer)
end
--[[
Makes the HTML required for an overlay map to work
tag.
@param {string} overlayMap wikitext for the overlay map
@param {string} baseMap wikitext for the base map
@param {table} options various styling/display options
@param {string} options.align "left" or "center" or "right"
@param {string|number} options.width Width of the base map, e.g. "300"
@param {string|number} options.width Height of the base map, e.g. "200"
@param {string} options.border Border style for the overlayed map, e.g. "1px solid white"
@param {string} options.horizontalAlignment Horizontal alignment for overlay map, "left" or "right"
@param {string|number} options.horizontalOffset Horizontal offset in pixels from the alignment edge, e.g "10"
@param {string} options.verticalAlignment Vertical alignment for overlay map, "top" or "bottom"
@param {string|number} options.verticalOffset Vertical offset in pixels from the alignment edge, e.g. is "10"
@param {boolean} options.isThumbnail Display in a thumbnail
@param {string} [options.caption] Caption wikitext for thumnail
@retruns {string} HTML for basemap with overlay
]]--
function make.overlayHtml(overlayMap, baseMap, options)
options = options or {}
local containerFloatClass = "float"..(options.align or "none")
if options.align == "center" then
containerFloatClass = "center"
end
local containerStyle = {
position = "relative",
width = options.width .. "px",
height = options.height .. "px",
overflow = "hidden" -- mobile/minerva tends to add scrollbars for a couple of pixels
}
if options.align == "center" then
containerStyle["margin-left"] = "auto"
containerStyle["margin-right"] = "auto"
end
local container = mw.html.create("div")
:addClass("mapframe-withOverlay-container")
:addClass(containerFloatClass)
:addClass("noresize")
:css(containerStyle)
local overlayStyle = {
position = "absolute",
["z-index"] = "1",
border = options.border or "1px solid white"
}
if options.horizontalAlignment == "right" then
overlayStyle.right = options.horizontalOffset .. "px"
else
overlayStyle.left = options.horizontalOffset .. "px"
end
if options.verticalAlignment == "bottom" then
overlayStyle.bottom = options.verticalOffset .. "px"
else
overlayStyle.top = options.verticalOffset .. "px"
end
local overlayDiv = mw.html.create("div")
:css(overlayStyle)
:wikitext(overlayMap)
container
:node(overlayDiv)
:wikitext(baseMap)
if not options.isThumbnail then
return tostring(container)
end
local classlist = container:getAttr("class")
classlist = mw.ustring.gsub(classlist, "%a*"..options.align, "")
container:attr("class", classlist)
local outerCountainer = mw.html.create("div")
:addClass("mapframe-withOverlay-outerContainer")
:addClass("mw-kartographer-container")
:addClass("thumb")
if options.align == "left" or options.align == "right" then
outerCountainer:addClass("t"..options.align)
else -- alignment is "center"
outerCountainer
:addClass("tnone")
:addClass("center")
end
outerCountainer
:tag("div")
:addClass("thumbinner")
:css("width", options.width.."px")
:node(container)
:node(options.caption and mw.html.create("div")
:addClass("thumbcaption")
:wikitext(options.caption)
)
return tostring(outerCountainer)
end
--[[----------------------------------------------------------------------------
Package to be exported, i.e. methods which will available to templates and
other modules.
----------------------------------------------------------------------------]]--
local p = {}
-- Entry point for templates
function p.main(frame)
local parent = frame.getParent(frame)
-- Check for overlay option
local overlay = util.getParameterValue(parent.args, 'overlay')
local hasOverlay = overlay and mw.text.trim(overlay) ~= ""
-- Check for switch option
local switch = util.getParameterValue(parent.args, 'switch')
local isMulti = switch and mw.text.trim(switch) ~= ""
-- Create output by choosing method to suit options
local output
if hasOverlay then
output = p.withOverlay(parent.args)
elseif isMulti then
output = p.multi(parent.args)
else
output = p._main(parent.args)
end
-- Preprocess output before returning it
return frame:preprocess(output)
end
-- Entry points for modules
function p._main(_args)
local args = util.trimArgs(_args)
local tagContent = make.content(args)
local display = mw.text.split(util.getParameterValue(args, 'display') or L10n.defaults.display, '%s*' .. L10n.str.dsep .. '%s*')
local displayInTitle = display[1] == L10n.str.title or display[2] == L10n.str.title
local displayInline = display[1] == L10n.str.inline or display[2] == L10n.str.inline
local output
if displayInTitle and displayInline then
output = make.titleOutput(args, tagContent) .. make.inlineOutput(args, tagContent)
elseif displayInTitle then
output = make.titleOutput(args, tagContent)
elseif displayInline then
output = make.inlineOutput(args, tagContent)
else
error(L10n.error.badDisplayPara)
end
return output
end
function p.multi(_args)
local args = util.trimArgs(_args)
if not args[L10n.para.switch] then error(L10n.error.noSwitchPara, 0) end
local switchParamValue = util.getParameterValue(args, 'switch')
local switchLabels = util.tableFromList(switchParamValue)
if #switchLabels == 1 then error(L10n.error.oneSwitchLabel, 0) end
local mapframeArgs = {}
local switchParams = {}
for name, val in pairs(args) do
-- Copy to mapframeArgs, if not the switch labels or a switch parameter
if val ~= switchParamValue and not string.match(val, "^"..L10n.str.switch..":") then
mapframeArgs[name] = val
end
-- Check if this is a param to switch. If so, store the name and switch
-- values in switchParams table.
local switchList = string.match(val, "^"..L10n.str.switch..":(.+)")
if switchList ~= nil then
local values = util.tableFromList(switchList)
if #values == 1 then
error(string.format(L10n.error.oneSwitchValue, name), 0)
end
switchParams[name] = values
end
end
if util.tableCount(switchParams) == 0 then
error(L10n.error.noSwitchLists, 0)
end
local switchCount = util.subTablesCount(switchParams)
if not switchCount then
error(L10n.error.switchMismatches, 0)
elseif switchCount > #switchLabels then
error(string.format(L10n.error.fewerSwitchLabels, switchCount, #switchLabels), 0)
end
-- Ensure a plain frame will be used (thumbnail will be built by the
-- make.switcherHtml function if required, so that switcher options are
-- inside the thumnail)
mapframeArgs.plain = "yes"
local switcher = {}
for i = 1, switchCount do
local label = switchLabels[i]
for name, values in pairs(switchParams) do
mapframeArgs[name] = values[i]
end
table.insert(switcher, {
map = p._main(mapframeArgs),
label = "Show "..label
})
end
return make.switcherHtml(switcher, {
alignment = args["frame-align"] or "right",
isThumbnail = (args.frame and not args.plain) and true or false,
width = args["frame-width"] or L10n.defaults.frameWidth,
caption = args.text
})
end
function p.withOverlay(_args)
-- Get and trim wikitext for overlay map
local overlayMap = _args.overlay
if type(overlayMap) == 'string' then
overlayMap = overlayMap:match('^%s*(.-)%s*$')
end
local isThumbnail = (util.getParameterValue(_args, "frame") and not util.getParameterValue(_args, "plain")) and true or false
-- Get base map using the _main function, as a plain map
local args = util.trimArgs(_args)
args.plain = "yes"
local basemap = p._main(args)
-- Extract overlay options from args
local overlayOptions = {
width = util.getParameterValue(args, "frameWidth") or L10n.defaults.frameWidth,
height = util.getParameterValue(args, "frameHeight") or L10n.defaults.frameHeight,
align = util.getParameterValue(args, "frameAlign") or L10n.defaults.frameAlign,
border = util.getParameterValue(args, "overlayBorder") or L10n.defaults.overlayBorder,
horizontalAlignment = util.getParameterValue(args, "overlayHorizontalAlignment") or L10n.defaults.overlayHorizontalAlignment,
horizontalOffset = util.getParameterValue(args, "overlayHorizontalOffset") or L10n.defaults.overlayHorizontalOffset,
verticalAlignment = util.getParameterValue(args, "overlayVerticalAlignment") or L10n.defaults.overlayVerticalAlignment,
verticalOffset = util.getParameterValue(args, "overlayVerticalOffset") or L10n.defaults.overlayVerticalOffset,
isThumbnail = isThumbnail,
caption = util.getParameterValue(args, "text") or L10n.defaults.text
}
-- Make the HTML for the overlaying maps
return make.overlayHtml(overlayMap, basemap, overlayOptions)
end
return p
q2e1nzfks3c8oqbgowo6nzjrnbzedov
Tampilet:Infobox settlement
10
296
10073
9616
2026-04-01T18:45:10Z
De-Invincible
36
10073
wikitext
text/x-wiki
{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox
| child = {{yesno|{{{embed|}}}}}
| templatestyles =Infobox settlement/styles.css
| bodyclass = ib-settlement vcard
<!--** ngaran, bansa', om transliterasi ** -->
| above = <div class="fn org">{{if empty|{{{sim|}}}|{{{sim à hukuuma|}}}|{{PAGENAMEBASE}}}}</div>
{{#if:{{{sim à bòo|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}}
| subheader = {{#if:{{{settlement_type|{{{type|}}}}}}|<div class="category">{{{settlement_type|{{{type}}}}}}</div>}}
| rowclass1 = mergedtoprow ib-settlement-official
| data1 = {{#if:{{{ngaran|}}}|{{{ngaran_poimbida'|}}}}}
<!-- ***Transliteration language 1*** -->
| rowclass2 = mergedtoprow
| header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}} transcription(s)}}
| rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}}
| label3 = • {{{translit_lang1_type}}}
| data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}}
| rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}}
| label4 = • {{{translit_lang1_type1}}}
| data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}}
| rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}}
| label5 = • {{{translit_lang1_type2}}}
| data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}}
| rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}}
| label6 = • {{{translit_lang1_type3}}}
| data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}}
| rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}}
| label7 = • {{{translit_lang1_type4}}}
| data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}}
| rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}}
| label8 = • {{{translit_lang1_type5}}}
| data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}}
| rowclass9 = mergedbottomrow
| label9 = • {{{translit_lang1_type6}}}
| data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}}
<!-- ***Transliteration language 2*** -->
| rowclass10 = mergedtoprow
| header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}} transcription(s)}}
| rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}}
| label11 = • {{{translit_lang2_type}}}
| data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}}
| rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}}
| label12 = • {{{translit_lang2_type1}}}
| data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}}
| rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}}
| label13 = • {{{translit_lang2_type2}}}
| data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}}
| rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}}
| label14 = • {{{translit_lang2_type3}}}
| data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}}
| rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}}
| label15 = • {{{translit_lang2_type4}}}
| data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}}
| rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}}
| label16 = • {{{translit_lang2_type5}}}
| data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}}
| rowclass17 = mergedbottomrow
| label17 = • {{{translit_lang2_type6}}}
| data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}}
<!-- end ** names, type, and transliterations ** -->
<!-- ***Skyline Image*** -->
| rowclass18 = mergedtoprow
| data18 = {{#if:{{{image_skyline|}}}|<!--
-->{{#invoke:InfoboxImage|InfoboxImage<!--
-->|image={{{image_skyline|}}}<!--
-->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault=250px<!--
-->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!--
-->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!--
-->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }}
<!-- ***Flag, Seal, Shield and Coat of arms*** -->
| rowclass19 = mergedtoprow
| class19 = maptable
| data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}
|{{Infobox settlement/columns
| 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}}
| 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{seal_type|}}}|{{{seal_type}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}}
| 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}}
| 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}}
| 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}}
| 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}|
{{location map|{{{pushpin_map|}}}
|border = infobox
|alt = {{{pushpin_map_alt|}}}
|caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}}
|float = center
|width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize}}}|150}}
|default_width = 250
|relief= {{{pushpin_relief|}}}
|AlternativeMap = {{{pushpin_image|}}}
|overlay_image = {{{pushpin_overlay|}}}
|coordinates = {{{coordinates|}}}
|label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{#if:{{{name|}}}|{{{name}}}|{{{official_name|}}}}}}} }}
|marksize =6
|outside = {{{pushpin_outside|}}}<!-- pin is outside the map -->
|position = {{{pushpin_label_position|}}}
}}
}} }}
}} }}
<!-- ***Etymology*** -->
| rowclass20 = mergedtoprow
| data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }}
<!-- ***Nickname*** -->
| rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}}
| data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!--
-->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!--
-->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}: <!--
--><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!--
-->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!--
-->likely=[[Kategori:Pages using infobox settlement with possible nickname list]]}}}}}}
<!-- ***Motto*** -->
| rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}}
| data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!--
-->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!--
-->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}: <!--
--><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!--
-->{{Main other|{{Pluralize from text|{{{motto|}}}|<!--
-->likely=[[Kategori:Pages using infobox settlement with possible motto list]]}}}}}}
<!-- ***Anthem*** -->
| rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}}
| data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}}
<!-- ***Map*** -->
| rowclass24 = mergedtoprow
| data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}}
|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=250px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}}
}}}}
| rowclass25 = mergedrow
| data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault=250px|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }}
<!-- ***Pushpin Map*** -->
| rowclass26 = mergedtoprow
| data26 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}|
{{location map|{{{pushpin_map|}}}
|border = infobox
|alt = {{{pushpin_map_alt|}}}
|caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}}
|float = center
|width = {{{pushpin_mapsize|}}}
|default_width = 250
|relief= {{{pushpin_relief|}}}
|AlternativeMap = {{{pushpin_image|}}}
|overlay_image = {{{pushpin_overlay|}}}
|coordinates = {{{coordinates|}}}
|label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{#if:{{{name|}}}|{{{name}}}|{{{official_name|}}}}}}} }}
|marksize =6
|outside = {{{pushpin_outside|}}}<!-- pin is outside the map -->
|position = {{{pushpin_label_position|}}}
}}
}} }}
<!-- ***Coordinates*** -->
| rowclass27 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|{{#if:{{{grid_position|}}}|mergedrow|mergedbottomrow}}}}
| data27 = {{#if:{{{coordinates|}}}
|Coordinates{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}| ({{{coor_pinpoint|{{{coor_type|}}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }}
| rowclass28 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}}
| label28 = {{if empty|{{{grid_name|}}}|Grid position}}
| data28 = {{{grid_position|}}}
<!-- ***Subdivisions*** -->
| rowclass29 = mergedtoprow
| label29 = {{{subdivision_type}}}
| data29 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }}
| rowclass30 = mergedrow
| label30 = {{{subdivision_type1}}}
| data30 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }}
| rowclass31 = mergedrow
| label31 = {{{subdivision_type2}}}
| data31 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }}
| rowclass32 = mergedrow
| label32 = {{{subdivision_type3}}}
| data32 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }}
| rowclass33 = mergedrow
| label33 = {{{subdivision_type4}}}
| data33 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }}
| rowclass34 = mergedrow
| label34 = {{{subdivision_type5}}}
| data34 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }}
| rowclass35 = mergedrow
| label35 = {{{subdivision_type6}}}
| data35 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }}
<!--***Established*** -->
| rowclass36 = mergedtoprow
| label36 = {{{established_title}}}
| data36 = {{#if:{{{established_title|}}}|{{{established_date|}}} }}
| rowclass37 = mergedrow
| label37 = {{{established_title1}}}
| data37 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }}
| rowclass38 = mergedrow
| label38 = {{{established_title2}}}
| data38 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }}
| rowclass39 = mergedrow
| label39 = {{{established_title3}}}
| data39 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }}
| rowclass40 = mergedrow
| label40 = {{{established_title4}}}
| data40 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }}
| rowclass41 = mergedrow
| label41 = {{{established_title5}}}
| data41 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }}
| rowclass42 = mergedrow
| label42 = {{{established_title6}}}
| data42 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }}
| rowclass43 = mergedrow
| label43 = {{{established_title7}}}
| data43 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }}
| rowclass44 = mergedrow
| label44 = {{{extinct_title}}}
| data44 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }}
| rowclass45 = mergedrow
| label45 = Founded by
| data45 = {{{founder|}}}
| rowclass46 = mergedrow
| label46 = [[Namesake|Namesake]]
| data46 = {{{named_for|}}}
<!-- ***Seat of government and subdivisions within the settlement*** -->
| rowclass47 = mergedtoprow
| label47 = {{#if:{{{seat_type|}}}|{{{seat_type}}}|Seat}}
| data47 = {{{seat|}}}
| rowclass48 = mergedrow
| label48 = {{#if:{{{seat1_type|}}}|{{{seat1_type}}}|Former seat}}
| data48 = {{{seat1|}}}
| rowclass49 = mergedrow
| label49 = {{#if:{{{seat2_type|}}}|{{{seat2_type}}}|Former seat}}
| data49 = {{{seat2|}}}
| rowclass51 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}}
| label51 = {{#if:{{{parts_type|}}}|{{{parts_type}}}|Boroughs}}
| data51 = {{#if:{{{parts|}}}{{{p1|}}}
|{{#ifeq:{{{parts_style|}}}|para
|<b>{{{parts|}}}{{#if:{{both|{{{parts|}}}|{{{p1|}}}}}|: |}}</b>{{comma separated entries|{{{p1|}}}|{{{p2|}}}|{{{p3|}}}|{{{p4|}}}|{{{p5|}}}|{{{p6|}}}|{{{p7|}}}|{{{p8|}}}|{{{p9|}}}|{{{p10|}}}|{{{p11|}}}|{{{p12|}}}|{{{p13|}}}|{{{p14|}}}|{{{p15|}}}|{{{p16|}}}|{{{p17|}}}|{{{p18|}}}|{{{p19|}}}|{{{p20|}}}|{{{p21|}}}|{{{p22|}}}|{{{p23|}}}|{{{p24|}}}|{{{p25|}}}|{{{p26|}}}|{{{p27|}}}|{{{p28|}}}|{{{p29|}}}|{{{p30|}}}|{{{p31|}}}|{{{p32|}}}|{{{p33|}}}|{{{p34|}}}|{{{p35|}}}|{{{p36|}}}|{{{p37|}}}|{{{p38|}}}|{{{p39|}}}|{{{p40|}}}|{{{p41|}}}|{{{p42|}}}|{{{p43|}}}|{{{p44|}}}|{{{p45|}}}|{{{p46|}}}|{{{p47|}}}|{{{p48|}}}|{{{p49|}}}|{{{p50|}}}}}
|{{#if:{{{p1|}}}|{{Collapsible list|title={{{parts|}}}|expand={{#switch:{{{parts_style|}}}|coll=|list=y|{{#if:{{{p6|}}}||y}}}}|1={{{p1|}}}|2={{{p2|}}}|3={{{p3|}}}|4={{{p4|}}}|5={{{p5|}}}|6={{{p6|}}}|7={{{p7|}}}|8={{{p8|}}}|9={{{p9|}}}|10={{{p10|}}}|11={{{p11|}}}|12={{{p12|}}}|13={{{p13|}}}|14={{{p14|}}}|15={{{p15|}}}|16={{{p16|}}}|17={{{p17|}}}|18={{{p18|}}}|19={{{p19|}}}|20={{{p20|}}}|21={{{p21|}}}|22={{{p22|}}}|23={{{p23|}}}|24={{{p24|}}}|25={{{p25|}}}|26={{{p26|}}}|27={{{p27|}}}|28={{{p28|}}}|29={{{p29|}}}|30={{{p30|}}}|31={{{p31|}}}|32={{{p32|}}}|33={{{p33|}}}|34={{{p34|}}}|35={{{p35|}}}|36={{{p36|}}}|37={{{p37|}}}|38={{{p38|}}}|39={{{p39|}}}|40={{{p40|}}}|41={{{p41|}}}|42={{{p42|}}}|43={{{p43|}}}|44={{{p44|}}}|45={{{p45|}}}|46={{{p46|}}}|47={{{p47|}}}|48={{{p48|}}}|49={{{p49|}}}|50={{{p50|}}}}}
|{{{parts}}}
}}
}} }}
<!-- ***Government type and Leader*** -->
| rowclass52 = mergedtoprow
| header52 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}}
<!-- ***Government*** -->
| rowclass53 = mergedrow
| label53 = • Iri
| data53 = {{{government_type|}}}
| rowclass54 = mergedrow
| label54 = • Body
| class54 = agent
| data54 = {{{governing_body|}}}
| rowclass55 = mergedrow
| label55 = • {{{leader_title}}}
| data55 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}}
| rowclass56 = mergedrow
| label56 = • {{{leader_title1}}}
| data56 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}}
| rowclass57 = mergedrow
| label57 = • {{{leader_title2}}}
| data57 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}}
| rowclass58 = mergedrow
| label58 = • {{{leader_title3}}}
| data58 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}}
| rowclass59 = mergedrow
| label59 = • {{{leader_title4}}}
| data59 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}}
| rowclass60 = mergedrow
| label60 = {{{government_blank1_title}}}
| data60 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}}
| rowclass61 = mergedrow
| label61 = {{{government_blank2_title}}}
| data61 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}}
| rowclass62 = mergedrow
| label62 = {{{government_blank3_title}}}
| data62 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}}
| rowclass63 = mergedrow
| label63 = {{{government_blank4_title}}}
| data63 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}}
| rowclass64 = mergedrow
| label64 = {{{government_blank5_title}}}
| data64 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}}
| rowclass65 = mergedrow
| label65 = {{{government_blank6_title}}}
| data65 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}}
<!-- ***Geographical characteristics*** -->
<!-- ***Area*** -->
| rowclass66 = mergedtoprow
| header66 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}}
|{{#if:{{both|{{#ifeq:{{{total_type}}}| |1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}
|<!-- displayed below -->
|Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div>
}}
}}
| rowclass67 = {{#if:{{both|{{#ifeq:{{{total_type}}}| |1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}}
| label67 = {{#if:{{both|{{#ifeq:{{{total_type}}}| |1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}
|Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div>
| • {{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}}
}}
| data67 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_total_km2|}}}
|ha ={{{area_total_ha|}}}
|acre ={{{area_total_acre|}}}
|sqmi ={{{area_total_sq_mi|}}}
|dunam={{{area_total_dunam|}}}
|link ={{#switch:{{{dunam_link|}}}||on|total=on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass68 = mergedrow
| label68 = • Lardì'
| data68 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_land_km2|}}}
|ha ={{{area_land_ha|}}}
|acre ={{{area_land_acre|}}}
|sqmi ={{{area_land_sq_mi|}}}
|dunam={{{area_land_dunam|}}}
|link ={{#ifeq:{{{dunam_link|}}}|land|on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass69 = mergedrow
| label69 = • Àmu
| data69 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_water_km2|}}}
|ha ={{{area_water_ha|}}}
|acre ={{{area_water_acre|}}}
|sqmi ={{{area_water_sq_mi|}}}
|dunam={{{area_water_dunam|}}}
|link ={{#ifeq:{{{dunam_link|}}}|water|on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}} {{#if:{{{area_water_percent|}}}| {{{area_water_percent}}}{{#ifeq:%|{{#invoke:String|sub|{{{area_water_percent|}}}|-1}}||%}}}}}}
| rowclass70 = mergedrow
| label70 = • Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div>
| data70 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_urban_km2|}}}
|ha ={{{area_urban_ha|}}}
|acre ={{{area_urban_acre|}}}
|sqmi ={{{area_urban_sq_mi|}}}
|dunam={{{area_urban_dunam|}}}
|link ={{#ifeq:{{{dunam_link|}}}|urban|on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass71 = mergedrow
| label71 = • Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div>
| data71 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_rural_km2|}}}
|ha ={{{area_rural_ha|}}}
|acre ={{{area_rural_acre|}}}
|sqmi ={{{area_rural_sq_mi|}}}
|dunam={{{area_rural_dunam|}}}
|link ={{#ifeq:{{{dunam_link|}}}|rural|on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass72 = mergedrow
| label72 = • Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div>
| data72 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_metro_km2|}}}
|ha ={{{area_metro_ha|}}}
|acre ={{{area_metro_acre|}}}
|sqmi ={{{area_metro_sq_mi|}}}
|dunam={{{area_metro_dunam|}}}
|link ={{#ifeq:{{{dunam_link|}}}|metro|on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
<!-- ***Area rank*** -->
| rowclass73 = mergedrow
| label73 = • Mu'ami
| data73 = {{{area_rank|}}}
| rowclass74 = mergedrow
| label74 = • {{{area_blank1_title}}}
| data74 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_blank1_km2|}}}
|ha ={{{area_blank1_ha|}}}
|acre ={{{area_blank1_acre|}}}
|sqmi ={{{area_blank1_sq_mi|}}}
|dunam={{{area_blank1_dunam|}}}
|link ={{#ifeq:{{{dunam_link|}}}|blank1|on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass75 = mergedrow
| label75 = • {{{area_blank2_title}}}
| data75 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}}
|{{infobox_settlement/areadisp
|km2 ={{{area_blank2_km2|}}}
|ha ={{{area_blank2_ha|}}}
|acre ={{{area_blank2_acre|}}}
|sqmi ={{{area_blank2_sq_mi|}}}
|dunam={{{area_blank2_dunam|}}}
|link ={{#ifeq:{{{dunam_link|}}}|blank2|on}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass76 = mergedrow
| label76 =
| data76 = {{{area_note|}}}
<!-- ***Dimensions*** -->
| rowclass77 = mergedtoprow
| header77 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}}
| rowclass78 = mergedrow
| label78 = • Length
| data78 = {{#if:{{{length_km|}}}{{{length_mi|}}}
| {{infobox_settlement/lengthdisp
|km ={{{length_km|}}}
|mi ={{{length_mi|}}}
|pref={{{unit_pref}}}
|name={{{subdivision_name}}}
}} }}
| rowclass79 = mergedrow
| label79 = • Jàbaa
| data79 = {{#if:{{{width_km|}}}{{{width_mi|}}}
|{{infobox_settlement/lengthdisp
|km ={{{width_km|}}}
|mi ={{{width_mi|}}}
|pref={{{unit_pref}}}
|name={{{subdivision_name}}}
}} }}
<!-- ***Elevation*** -->
| rowclass80 = mergedtoprow
| label80 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}| ({{{elevation_point}}})}}</div>
| data80 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}
|{{infobox_settlement/lengthdisp
|m ={{{elevation_m|}}}
|ft ={{{elevation_ft|}}}
|pref={{{unit_pref}}}
|name={{{subdivision_name}}}
}} }}
| rowclass81 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}}
| label81 = Highest elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}| ({{{elevation_max_point}}})}}</div>
| data81 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}
|{{infobox_settlement/lengthdisp
|m ={{{elevation_max_m|}}}
|ft ={{{elevation_max_ft|}}}
|pref={{{unit_pref}}}
|name={{{subdivision_name}}}
}} }}
<!-- ***Elevation max rank*** -->
| rowclass82 = mergedrow
| label82 = • Rank
| data82 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }}
| rowclass83 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}}
| label83 = Lowest rawài<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}| ({{{elevation_min_point}}})}}</div>
| data83 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}
|{{infobox_settlement/lengthdisp
|m ={{{elevation_min_m|}}}
|ft ={{{elevation_min_ft|}}}
|pref={{{unit_pref}}}
|name={{{subdivision_name}}}
}} }}
<!-- ***Elevation min rank*** -->
| rowclass84 = mergedrow
| label84 = • Rank
| data84 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}}
<!-- ***Population*** -->
| rowclass85 = mergedtoprow
| label85 = Gàm mà mindì<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div>
| data85 = {{fix comma category|{{#if:{{{population|}}}
| {{formatnum:{{replace|{{{population}}}|,|}}}}
| {{#ifeq:{{{total_type}}}|
| {{#if:{{{population_total|}}}
| {{formatnum:{{replace|{{{population_total}}}|,|}}}}
}}
}}
}}}}
| rowclass86 = mergedtoprow
| header86 = {{#if:{{{population|}}}
|
|{{#ifeq:{{{total_type}}}|
|
|{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}}
|Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div>
}}
}}
}}
| rowclass87 = mergedrow
| label87 = • {{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}}
| data87 = {{#if:{{{population|}}}
|
|{{#ifeq:{{{total_type}}}|
|
|{{#if:{{{population_total|}}}
| {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}}
}}
}}
}}
| rowclass88 = mergedrow
| label88 = • Estimate <div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>
| data88 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }}
<!-- ***Population rank*** -->
| rowclass89 = mergedrow
| label89 = • Rank
| data89 = {{{population_rank|}}}
| rowclass90 = mergedrow
| label90 = • Ketumpatan
| data90 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}}
|{{infobox_settlement/densdisp
|/km2 ={{{population_density_km2|}}}
|/sqmi={{{population_density_sq_mi|}}}
|pop ={{{population_total|}}}
|dunam={{{area_total_dunam|}}}
|ha ={{{area_total_ha|}}}
|km2 ={{{area_total_km2|}}}
|acre ={{{area_total_acre|}}}
|sqmi ={{{area_total_sq_mi|}}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
<!-- ***Population density rank*** -->
| rowclass91 = mergedrow
| label91 = • Rank
| data91 = {{{population_density_rank|}}}
| rowclass92 = mergedrow
| label92 = • [[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div>
| data92 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }}
| rowclass93 = mergedrow
| label93 = • Urban density
| data93 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}}
|{{infobox_settlement/densdisp
|/km2 ={{{population_density_urban_km2|}}}
|/sqmi={{{population_density_urban_sq_mi|}}}
|pop ={{{population_urban|}}}
|ha ={{{area_urban_ha|}}}
|km2 ={{{area_urban_km2|}}}
|acre ={{{area_urban_acre|}}}
|sqmi ={{{area_urban_sq_mi|}}}
|dunam={{{area_urban_dunam|}}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass94 = mergedrow
| label94 = • [[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div>
| data94 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}}
| rowclass95 = mergedrow
| label95 = • Rural density
| data95 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}}
|{{infobox_settlement/densdisp
|/km2 ={{{population_density_rural_km2|}}}
|/sqmi={{{population_density_rural_sq_mi|}}}
|pop ={{{population_rural|}}}
|ha ={{{area_rural_ha|}}}
|km2 ={{{area_rural_km2|}}}
|acre ={{{area_rural_acre|}}}
|sqmi ={{{area_rural_sq_mi|}}}
|dunam={{{area_rural_dunam|}}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass96 = mergedrow
| label96 = • [[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div>
| data96 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }}
| rowclass97 = mergedrow
| label97 = • Metro density
| data97 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}}
|{{infobox_settlement/densdisp
|/km2 ={{{population_density_metro_km2|}}}
|/sqmi={{{population_density_metro_sq_mi|}}}
|pop ={{{population_metro|}}}
|ha ={{{area_metro_ha|}}}
|km2 ={{{area_metro_km2|}}}
|acre ={{{area_metro_acre|}}}
|sqmi ={{{area_metro_sq_mi|}}}
|dunam={{{area_metro_dunam|}}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass98 = mergedrow
| label98 = • {{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div>
| data98 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}}
| rowclass99 = mergedrow
| label99 = • {{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}}
| data99 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}}
|{{infobox_settlement/densdisp
|/km2 ={{{population_density_blank1_km2|}}}
|/sqmi={{{population_density_blank1_sq_mi|}}}
|pop ={{{population_blank1|}}}
|ha ={{{area_blank1_ha|}}}
|km2 ={{{area_blank1_km2|}}}
|acre ={{{area_blank1_acre|}}}
|sqmi ={{{area_blank1_sq_mi|}}}
|dunam={{{area_blank1_dunam|}}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass100 = mergedrow
| label100 = • {{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div>
| data100 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}}
| rowclass101 = mergedrow
| label101 = • {{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}}
| data101 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}}
|{{infobox_settlement/densdisp
|/km2 ={{{population_density_blank2_km2|}}}
|/sqmi={{{population_density_blank2_sq_mi|}}}
|pop ={{{population_blank2|}}}
|ha ={{{area_blank2_ha|}}}
|km2 ={{{area_blank2_km2|}}}
|acre ={{{area_blank2_acre|}}}
|sqmi ={{{area_blank2_sq_mi|}}}
|dunam={{{area_blank2_dunam|}}}
|pref ={{{unit_pref}}}
|name ={{{subdivision_name}}}
}}}}
| rowclass102 = mergedrow
| label102 =
| data102 = {{{population_note|}}}
| rowclass103 = mergedtoprow
| label103 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!--
-->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}}
| data103 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Kategori:Pages using infobox settlement with possible demonym list]]}}}}
<!-- ***Demographics 1*** -->
| rowclass104 = mergedtoprow
| header104 = {{#if:{{{demographics_type1|}}}
|{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}}
| rowclass105 = mergedrow
| label105 = • {{{demographics1_title1}}}
| data105 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}}
| rowclass106 = mergedrow
| label106 = • {{{demographics1_title2}}}
| data106 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}}
| rowclass107 = mergedrow
| label107 = • {{{demographics1_title3}}}
| data107 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}}
| rowclass108 = mergedrow
| label108 = • {{{demographics1_title4}}}
| data108 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}}
| rowclass109 = mergedrow
| label109 = • {{{demographics1_title5}}}
| data109 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}}
| rowclass110 = mergedrow
| label110 = • {{{demographics1_title6}}}
| data110 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}}
| rowclass111 = mergedrow
| label111 = • {{{demographics1_title7}}}
| data111 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}}
| rowclass112 = mergedrow
| label112 = • {{{demographics1_title8}}}
| data112 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}}
| rowclass113 = mergedrow
| label113 = • {{{demographics1_title9}}}
| data113 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}}
| rowclass114 = mergedrow
| label114 = • {{{demographics1_title10}}}
| data114 = {{#if:{{{demographics_type1|}}}
|{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}}
<!-- ***Demographics 2*** -->
| rowclass115 = mergedtoprow
| header115 = {{#if:{{{demographics_type2|}}}
|{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}}
| rowclass116 = mergedrow
| label116 = • {{{demographics2_title1}}}
| data116 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}}
| rowclass117 = mergedrow
| label117 = • {{{demographics2_title2}}}
| data117 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}}
| rowclass118 = mergedrow
| label118 = • {{{demographics2_title3}}}
| data118 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}}
| rowclass119 = mergedrow
| label119 = • {{{demographics2_title4}}}
| data119 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}}
| rowclass120 = mergedrow
| label120 = • {{{demographics2_title5}}}
| data120 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}}
| rowclass121 = mergedrow
| label121 = • {{{demographics2_title6}}}
| data121 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}}
| rowclass122 = mergedrow
| label122 = • {{{demographics2_title7}}}
| data122 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}}
| rowclass123 = mergedrow
| label123 = • {{{demographics2_title8}}}
| data123 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}}
| rowclass124 = mergedrow
| label124 = • {{{demographics2_title9}}}
| data124 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}}
| rowclass125 = mergedrow
| label125 = • {{{demographics2_title10}}}
| data125 = {{#if:{{{demographics_type2|}}}
|{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}}
<!-- ***Time Zones*** -->
| rowclass126 = mergedtoprow
| header126 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}|}}
| rowclass127 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}}
| label127 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}}}}}
| data127 = {{#if:{{{utc_offset1|{{{utc_offset|}}} }}}
|[[UTC{{{utc_offset1|{{{utc_offset}}}}}}]] {{#if:{{{timezone1|{{{timezone|}}}}}}|({{{timezone1|{{{timezone}}}}}})}}
|{{{timezone1|{{{timezone|}}}}}}
}}
| rowclass128 = mergedrow
| label128 = <span class="nowrap"> • Summer ([[Daylight saving time|DST]])</span>
| data128 = {{#if:{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}}
|[[UTC{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}}]] {{#if:{{{timezone1_DST|{{{timezone_DST|}}}}}}|({{{timezone1_DST|{{{timezone_DST}}}}}})}}
|{{{timezone1_DST|{{{timezone_DST|}}}}}}
}}
| rowclass129 = mergedrow
| label129 = {{#if:{{{timezone2_location|}}}| {{{timezone2_location|}}}|<nowiki />}}
| data129 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}}
|{{#if:{{{utc_offset2|{{{utc_offset2|}}} }}}
|[[UTC{{{utc_offset2|{{{utc_offset2}}}}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}}
|{{{timezone2|}}}
}}
}}
| rowclass130 = mergedrow
| label130 = <span class="nowrap"> • Summer ([[Daylight saving time|DST]])</span>
| data130 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}}
|{{{timezone2_DST|}}}
}}
| rowclass131 = mergedrow
| label131 = {{#if:{{{timezone3_location|}}}| {{{timezone3_location|}}}|<nowiki />}}
| data131 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}}
|{{#if:{{{utc_offset3|{{{utc_offset3|}}} }}}
|[[UTC{{{utc_offset3|{{{utc_offset3}}}}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}}
|{{{timezone3|}}}
}}
}}
| rowclass132 = mergedrow
| label132 = <span class="nowrap"> • Summer ([[Daylight saving time|DST]])</span>
| data132 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}}
|{{{timezone3_DST|}}}
}}
| rowclass133 = mergedrow
| label133 = {{#if:{{{timezone4_location|}}}| {{{timezone4_location|}}}|<nowiki />}}
| data133 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}}
|{{#if:{{{utc_offset4|{{{utc_offset4|}}} }}}
|[[UTC{{{utc_offset4|{{{utc_offset4}}}}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}}
|{{{timezone4|}}}
}}
}}
| rowclass134 = mergedrow
| label134 = <span class="nowrap"> • Summer ([[Daylight saving time|DST]])</span>
| data134 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}}
|{{{timezone4_DST|}}}
}}
| rowclass135 = mergedrow
| label135 = {{#if:{{{timezone5_location|}}}| {{{timezone5_location|}}}|<nowiki />}}
| data135 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}}
|{{#if:{{{utc_offset5|{{{utc_offset5|}}} }}}
|[[UTC{{{utc_offset5|{{{utc_offset5}}}}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}}
|{{{timezone5|}}}
}}
}}
| rowclass136 = mergedrow
| label136 = <span class="nowrap"> • Summer ([[Daylight saving time|DST]])</span>
| data136 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}}
|{{{timezone5_DST|}}}
}}
<!-- ***Postal Code(s)*** -->
| rowclass137 = mergedtoprow
| label137 = {{{postal_code_type}}}
| class137 = adr
| data137 = {{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}}}}
| rowclass138 = {{#if:{{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|1}}}}|mergedbottomrow|mergedtoprow}}
| label138 = {{{postal2_code_type}}}
| class138 = adr
| data138 = {{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} }} }}
<!-- ***Area Code(s)*** -->
| rowclass139 = {{#if:{{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|1}}}}{{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|1}}}}}}|mergedrow|mergedtoprow}}
| label139 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!--
-->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}}
| data139 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Kategori:Pages using infobox settlement with possible area code list]]}}}}}}
<!-- Geocode-->
| rowclass140 = {{#if:{{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|1}}}}{{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|1}}}}}}{{{area_code|}}}|mergedrow|mergedtoprow}}
| label140 = [[Geocode]]
| class140 = nickname
| data140 = {{{geocode|}}}
<!-- ISO Code-->
| rowclass141 = {{#if:{{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|1}}}}{{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|1}}}}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}}
| label141 = [[ISO 3166|ISO 3166 code]]
| class141 = nickname
| data141 = {{{iso_code|}}}
<!-- Vehicle registration plate-->
| rowclass142 = {{#if:{{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|1}}}}{{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|1}}}}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}}
| label142 = {{#if:{{{registration_plate_type|}}}|{{{registration_plate_type}}}|[[Vehicle registration plate|Vehicle registration]]}}
| data142 = {{{registration_plate|}}}
<!-- Other codes -->
| rowclass143 = {{#if:{{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|1}}}}{{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|1}}}}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|{{{registration_plate|}}}|mergedrow|mergedtoprow}}
| label143 = {{{code1_name|}}}
| class143 = nickname
| data143 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}}
| rowclass144 = {{#if:{{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|1}}}}{{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|1}}}}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|{{{registration_plate|}}}|{{{code1_name|}}}|mergedrow|mergedtoprow}}
| label144 = {{{code2_name|}}}
| class144 = nickname
| data144 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}}
<!-- ***Blank Fields (two sections)*** -->
| rowclass145 = mergedtoprow
| label145 = {{{blank_name_sec1|{{{blank_name|}}}}}}
| data145 = {{#if:{{{blank_name_sec1|{{{blank_name|}}}}}}|{{{blank_info_sec1|{{{blank_info|}}}}}}}}
| rowclass146 = mergedrow
| label146 = {{{blank1_name_sec1|{{{blank1_name|}}}}}}
| data146 = {{#if:{{{blank1_name_sec1|{{{blank1_name|}}}}}}|{{{blank1_info_sec1|{{{blank1_info|}}}}}}}}
| rowclass147 = mergedrow
| label147 = {{{blank2_name_sec1|{{{blank2_name|}}}}}}
| data147 = {{#if:{{{blank2_name_sec1|{{{blank2_name|}}}}}}|{{{blank2_info_sec1|{{{blank2_info|}}}}}}}}
| rowclass148 = mergedrow
| label148 = {{{blank3_name_sec1|{{{blank3_name|}}}}}}
| data148 = {{#if:{{{blank3_name_sec1|{{{blank3_name|}}}}}}|{{{blank3_info_sec1|{{{blank3_info|}}}}}}}}
| rowclass149 = mergedrow
| label149 = {{{blank4_name_sec1|{{{blank4_name|}}}}}}
| data149 = {{#if:{{{blank4_name_sec1|{{{blank4_name|}}}}}}|{{{blank4_info_sec1|{{{blank4_info|}}}}}}}}
| rowclass150 = mergedrow
| label150 = {{{blank5_name_sec1|{{{blank5_name|}}}}}}
| data150 = {{#if:{{{blank5_name_sec1|{{{blank5_name|}}}}}}|{{{blank5_info_sec1|{{{blank5_info|}}}}}}}}
| rowclass151 = mergedrow
| label151 = {{{blank6_name_sec1|{{{blank6_name|}}}}}}
| data151 = {{#if:{{{blank6_name_sec1|{{{blank6_name|}}}}}}|{{{blank6_info_sec1|{{{blank6_info|}}}}}}}}
| rowclass152 = mergedrow
| label152 = {{{blank7_name_sec1|{{{blank7_name|}}}}}}
| data152 = {{#if:{{{blank7_name_sec1|{{{blank7_name|}}}}}}|{{{blank7_info_sec1|{{{blank7_info|}}}}}}}}
| rowclass153 = mergedtoprow
| label153 = {{{blank_name_sec2}}}
| data153 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}}
| rowclass154 = mergedrow
| label154 = {{{blank1_name_sec2}}}
| data154 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}}
| rowclass155 = mergedrow
| label155 = {{{blank2_name_sec2}}}
| data155 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}}
| rowclass156 = mergedrow
| label156 = {{{blank3_name_sec2}}}
| data156 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}}
| rowclass157 = mergedrow
| label157 = {{{blank4_name_sec2}}}
| data157 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}}
| rowclass158 = mergedrow
| label158 = {{{blank5_name_sec2}}}
| data158 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}}
| rowclass159 = mergedrow
| label159 = {{{blank6_name_sec2}}}
| data159 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}}
| rowclass160 = mergedrow
| label160 = {{{blank7_name_sec2}}}
| data160 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}}
<!-- ***Website*** -->
| rowclass161 = mergedtoprow
| label161 = Website
| data161 = {{#if:{{{website|}}}|{{{website}}}}}
| class162 = maptable
| data162 = {{#if:{{{module|}}}|{{{module}}}}}
<!-- ***Footnotes*** -->
| belowrowclass = mergedtoprow
| below = {{{footnotes|}}}
}}<!-- Check for unknowns
-->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Kategori:Pages using infobox settlement with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Templat:Infobox settlement]] with unknown parameter "_VALUE_"|ignoreblank=y
| alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description | subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi
}}<!--
-->{{#invoke:Check for clobbered parameters|check
| template = Infobox settlement
| cat = {{main other|Category:Pages using infobox settlement with conflicting parameters}}
| population; population_total
| image_size; imagesize
| image_alt; alt
| image_caption; caption
}}<!-- Wikidata
-->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}}
|[[Kategori:Pages using infobox settlement with the wikidata parameter]]
}}{{main other|<!-- Missing country
-->{{#if:{{{subdivision_name|}}}||[[Kategori:Pages using infobox settlement with missing country]]}}<!-- No map
-->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Kategori:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map
-->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Kategori:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates
-->{{#if:{{{coordinates|}}}||[[Kategori:Pages using infobox settlement with no coordinates]]}}<!--
-->{{#if:{{{type|}}}|{{#ifeq:{{{settlement_type|a}}}|{{{settlement_type|b}}}|[[Kategori:Pages using infobox settlement with ignored type]]|}}|}}<!-- Ignored type parameter
-->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}}
}}
<noinclude>
{{Documentation}}
<!--Please add this template's categories to the /doc subpage, not here - thanks!-->
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
jhv2pyjnxrm8pqt2zpnqp5l4f75yryb
10084
10073
2026-04-01T19:09:11Z
De-Invincible
36
Undid revision [[Special:Diff/10073|10073]] by [[Special:Contributions/De-Invincible|De-Invincible]] ([[User talk:De-Invincible|talk]])
10084
wikitext
text/x-wiki
<includeonly>
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border: 1px solid #e0e0e0; background: #ffffff; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); font-family: 'Segoe UI', serif; overflow: hidden; line-height: 1.4;">
<div style="text-align:center; font-size: 150%; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<hr style="border: 0; border-top: 3px solid {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}}; margin: 0 15px 10px;">
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 90%; font-weight: bold; padding: 4px 10px; margin: 0 15px 15px; border-radius: 4px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">{{#if: {{{nickname|}}} | "<i>{{{nickname}}}</i>" | {{{subheader|{{{settlement_type|}}}}}} }}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 92%; table-layout: fixed; background: transparent; margin: 0;">
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555;">{{{map_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small>Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small>Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<tr><th colspan="2" style="text-align:center; background-color: #f8f9fa; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%;font-weight:bold;text-transform:uppercase;letter-spacing:0.5px;">Bayàanai</th></tr>
{{#if: {{{native_name|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Sim à bòo:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{native_name}}}</td>
</tr>
}}
{{#if: {{{subdivision_name|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">{{{subdivision_type|Ƴali}}}:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{subdivision_name}}}</td>
</tr>
}}
{{#if: {{{subdivision_name1|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">{{{subdivision_type1|Jaha}}}:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{subdivision_name1}}}</td>
</tr>
}}
{{#if: {{{subdivision_name2|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{subdivision_name2}}}</td>
</tr>
}}
{{#if: {{{state|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Jahà:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{state}}}</td>
</tr>
}}
{{#if: {{{lga|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Hukuuma tòotai:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{lga}}}</td>
</tr>
}}
{{#if: {{{subdivision_name3|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">{{{subdivision_type3|Yanki}}}:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{subdivision_name3}}}</td>
</tr>
}}
{{#if: {{{coordinates|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Kòodinet:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{coordinates}}}</td>
</tr>
}}
<tr><th colspan="2" style="text-align:center; background-color: #f8f9fa; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%;font-weight:bold;text-transform:uppercase;letter-spacing:0.5px;">Hùkuuma</th></tr>
{{#if: {{{government_type|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Tsarin mulki:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{government_type}}}</td>
</tr>
}}
{{#if: {{{leader_name|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">{{{leader_title|Governor}}}:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{leader_name}}}</td>
</tr>
}}
{{#if: {{{seat|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Jàga tà mâiwàa:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{seat}}}</td>
</tr>
}}
{{#if: {{{leader_name1|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Matemaki mà Gamna:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{leader_name1}}}</td>
</tr>
}}
{{#if: {{{established_date|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Ɗàwàa:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{established_date}}}</td>
</tr>
}}
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{elevation_m|}}} |
<tr>
<th colspan="2" style="text-align:center; background-color: #f8f9fa; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%;font-weight:bold;text-transform:uppercase;letter-spacing:0.5px;">Mbeesu mà mindì
</th>
</tr>
}}
{{#if: {{{area_total_km2|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Màalaa:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{area_total_km2}}} km²</td>
</tr>
}}
{{#if: {{{population_total|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Gam mà mindì:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td>
</tr>
}}
{{#if: {{{population_density_km2|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Mâiwàa mà mindì:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{population_density_km2}}}</td>
</tr>
}}
{{#if: {{{demographics1_info2|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Bàayàa mà jiha (GDP):</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td>
</tr>
}}
{{#if: {{{elevation_m|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Daatù:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{elevation_m}}} m</td>
</tr>
}}
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr>
<th colspan="2" style="text-align:center; background-color: #f8f9fa; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%;font-weight:bold;text-transform:uppercase;letter-spacing:0.5px;">Kwàd
</th>
</tr>
}}
{{#if: {{{timezone|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Sartù:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{timezone}}} (UTC{{{utc_offset|}}})</td>
</tr>
}}
{{#if: {{{postal_code|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Lamba mà jàgo:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{postal_code}}}</td>
</tr>
}}
{{#if: {{{area_code|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Lamba mà càɗi:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; vertical-align: top;">{{{area_code}}}</td>
</tr>
}}
{{#if: {{{blank_info_sec1|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Ma'auni mà HDI:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{blank_info_sec1}}}</td>
</tr>
}}
{{#if: {{{iso_code|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px; border-bottom: 1px solid #eee; vertical-align: top; font-size: 88%; color: #555;">Lamba mà ISO:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; border-bottom: 1px solid #eee; word-wrap: break-word; vertical-align: top;">{{{iso_code}}}</td>
</tr>
}}
{{#if: {{{website|}}} |
<tr>
<th style="width: 45%; text-align: left; padding: 8px 15px 8px 15px; vertical-align: top; font-size: 88%; color: #555;">Jèere tà Sâunaa:</th>
<td style="width: 55%; padding: 8px 15px 8px 5px; word-wrap: break-word; vertical-align: top;">{{{website}}}</td>
</tr>
}}
</table>
</div>
</includeonly>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
bvx4bd0hxtmz1hv7gn0zayiwqbg049e
10085
10084
2026-04-01T19:29:18Z
De-Invincible
36
10085
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Section Divider -->
<hr style="border: 0; border-top: 3px solid {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}}; margin: 0 15px 10px;">
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; padding: 5px 10px; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}} | "<i>{{{nickname}}}</i>" | {{{subheader|{{{settlement_type|}}}}}} }}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
ikxa9bm1qlxn96twyx5bpb2piee2sfb
10086
10085
2026-04-01T19:32:01Z
De-Invincible
36
10086
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Section Divider -->
<hr style="border: 0; border-top: 3px solid {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}}; margin: 0 15px 10px;">
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; padding: 5px 10px; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}} | "<i>{{{nickname}}}</i>" | {{{subheader|{{{settlement_type|}}}}}} }}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
qbps6hfsb5usz0rlh88oucjdur0nxxl
10087
10086
2026-04-01T19:33:38Z
De-Invincible
36
10087
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Section Divider -->
<hr style="border: 0; border-top: 3px solid {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}}; margin: 0 15px 10px;">
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; padding: 2px 10px; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}} | "<i>{{{nickname}}}</i>" | {{{subheader|{{{settlement_type|}}}}}} }}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
b0lbhnw8012mrzenwjdl7dumgc9b730
10088
10087
2026-04-01T19:34:37Z
De-Invincible
36
10088
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Section Divider -->
<hr style="border: 0; border-top: 3px solid {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}}; margin: 0 15px 10px;">
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; padding: 2px 10px; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}} | "<i>{{{nickname}}}</i>" | {{{subheader|{{{settlement_type|}}}}}} }}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
15htxvvt9w5ulipaeqroy47qeef40ms
10089
10088
2026-04-01T19:37:14Z
De-Invincible
36
10089
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Section Divider -->
<hr style="border: 0; border-top: 3px solid {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}}; margin: 0 15px 10px;">
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; padding: 2px 10px; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}} | "<i>{{{nickname}}}</i>" | {{{subheader|{{{settlement_type|}}}}}} }}
</div>
}}
<!-- Section Divider -->
<hr style="border: 0; border-top: 3px solid {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}}; margin: 0 15px 10px;">
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
648alwofeoujokvgf1s2awdifmtn66d
10090
10089
2026-04-01T19:38:31Z
De-Invincible
36
10090
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}} | "<i>{{{nickname}}}</i>" | {{{subheader|{{{settlement_type|}}}}}} }}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
syiwa4ufrs0wlmvm3b9tp29mafdyajl
10091
10090
2026-04-02T06:15:51Z
De-Invincible
36
10091
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
kh3wmvh6at9mlwye53yhprzechm98c4
10092
10091
2026-04-02T06:20:57Z
De-Invincible
36
10092
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
535p7qv7aaav57q7w2rnnh1v1q1jyv0
10094
10092
2026-04-02T06:26:12Z
De-Invincible
36
10094
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{other_name|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
9543lftlz32tj9n1xgr4am2rpixofm9
10095
10094
2026-04-02T06:27:27Z
De-Invincible
36
10095
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
535p7qv7aaav57q7w2rnnh1v1q1jyv0
10096
10095
2026-04-02T06:33:26Z
De-Invincible
36
10096
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #8e24aa
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
3dykzo1c83ubl0gagi91apteg0liw1j
10097
10096
2026-04-02T06:34:24Z
De-Invincible
36
10097
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
3cmarimcdmg6a5ogw5v2njakmhmg71s
10101
10097
2026-04-02T06:58:43Z
De-Invincible
36
10101
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Else use Location map safely -->
{{#if: {{{coordinates|}}}{{{latd|}}}{{{longd|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<!-- If full coordinates template is provided -->
{{#if: {{{coordinates|}}} |
{{{coordinates}}}
|
<!-- Else use Location map safely -->
{{#if: {{{latd|}}}{{{longd|}}} |
{{#invoke:Location map|main
| Nigeria
| lat_deg = {{{latd|}}}
| lat_min = {{{latm|}}}
| lat_sec = {{{lats|}}}
| lat_dir = {{{latNS|}}}
| lon_deg = {{{longd|}}}
| lon_min = {{{longm|}}}
| lon_sec = {{{longs|}}}
| lon_dir = {{{longEW|}}}
| width = 270
| float = center
| caption = {{{map_caption|}}}
}}
}}
}}
</td>
</tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
h7nyc7m2ipjihvenl0nu2d8ar8qvms5
10102
10101
2026-04-02T07:03:08Z
De-Invincible
36
10102
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Else use Location map safely -->
{{#if: {{{coordinates|}}}{{{latd|}}}{{{longd|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<!-- If full coordinates template is provided -->
{{#if: {{{coordinates|}}} |
{{{coordinates}}}
|
<!-- Else use Location map safely -->
{{#if: {{{latd|}}}{{{longd|}}} |
{{#invoke:Location map|main
| Nigeria
| lat_deg = {{{latd|}}}
| lat_min = {{{latm|}}}
| lat_sec = {{{lats|}}}
| lat_dir = {{{latNS|}}}
| lon_deg = {{{longd|}}}
| lon_min = {{{longm|}}}
| lon_sec = {{{longs|}}}
| lon_dir = {{{longEW|}}}
| width = 270
| float = center
| caption = {{{map_caption|}}}
}}
}}
}}
</td>
</tr>
}}
{{#if: {{{lat|}}}{{{lon|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<mapframe
width="270"
height="200"
zoom="{{{map_zoom|10}}}"
latitude="{{{lat}}}"
longitude="{{{lon}}}"
>
[
{
"type": "Feature",
"properties": {
"title": "{{{name|{{PAGENAME}}}}}",
"description": "{{{map_caption|}}}"
},
"geometry": {
"type": "Point",
"coordinates": [{{{lon}}}, {{{lat}}}]
}
}
]
</mapframe>
</td>
</tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
6415674ohet5nwgzkoedwhy4m9hv8la
10103
10102
2026-04-02T07:04:35Z
De-Invincible
36
10103
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{lat|}}}{{{lon|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<mapframe
width="270"
height="200"
zoom="{{{map_zoom|10}}}"
latitude="{{{lat}}}"
longitude="{{{lon}}}"
>
[
{
"type": "Feature",
"properties": {
"title": "{{{name|{{PAGENAME}}}}}",
"description": "{{{map_caption|}}}"
},
"geometry": {
"type": "Point",
"coordinates": [{{{lon}}}, {{{lat}}}]
}
}
]
</mapframe>
</td>
</tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
p8t50wval8fhr9tbgo2dprzbndg8lic
10105
10103
2026-04-02T07:26:58Z
De-Invincible
36
10105
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
{{#if:{{{mapframe|}}}|
{{#invoke:Mapframe|main
|id={{{qid|}}}
|zoom={{{mapframe-zoom|13}}}
|frame-width={{{mapframe-width|250}}}
|frame-height={{{mapframe-height|200}}}
|marker=city
}}
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
4kxbdtpl9fgc7yydbu5ymczjsfb7j9b
10108
10105
2026-04-02T07:48:44Z
De-Invincible
36
10108
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{mapframe|}}} |
|-
| colspan="2" style="text-align:center;" |
{{#invoke:Infobox mapframe|main|id={{{qid|}}}|zoom={{{mapframe-zoom|10}}}}}
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
je3wban3z7nydz43rism826ezif45zq
10109
10108
2026-04-02T07:52:42Z
De-Invincible
36
10109
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{pushpin_map|}}} |
|-
| colspan="2" style="text-align:center;" |
{{Location map|{{{pushpin_map}}}
|label={{{name|{{PAGENAME}}}}}
|coordinates={{{coordinates|}}}
|width=270
|caption={{{map_caption|Location in {{{pushpin_map}}}}}}
}}
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
nj7er9ancv6xkuxfk111zlpa998y6x9
10110
10109
2026-04-02T07:53:29Z
De-Invincible
36
10110
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
3cmarimcdmg6a5ogw5v2njakmhmg71s
10111
10110
2026-04-02T07:55:04Z
De-Invincible
36
10111
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
{{#if: {{{other_name|}}} |
<div style="font-size: 70%; font-weight: normal; font-style: italic; color: #555; margin-top: 4px;">
{{{other_name}}}
</div>
}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
mmc4ugy3kyelrdgdrnjcs33ljvjkb74
10112
10111
2026-04-02T07:55:55Z
De-Invincible
36
10112
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
{{#if: {{{other_name|}}} |
<div style="font-size: 30%; font-weight: normal; font-style: italic; color: #555; margin-top: 4px;">
{{{other_name}}}
</div>
}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
15ye2xp7q705erslbqr2qfh9kt94ar9
10113
10112
2026-04-02T07:57:31Z
De-Invincible
36
10113
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
{{#if: {{{other_name|}}} {{{native_name|}}}|
<div style="font-size: 55%; font-weight: normal; font-style: italic; color: #555; margin-top: 4px;">
{{{other_name}}}<br>{{{native_name|}}}
</div>
}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
fuqla2473zjtugogjqslkhknf8p8pe7
10115
10113
2026-04-02T08:02:32Z
De-Invincible
36
10115
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
{{#if: {{{other_name|}}}|
<div style="font-size: 55%; font-weight: normal; font-style: italic; color: #555; margin-top: 4px;">
{{{other_name}}}
</div>
}}
{{#if: {{{native_name|}}}|
<div style="font-size: 55%; font-weight: normal; font-style: italic; color: #555; margin-top: 4px;">
{{{native_name|}}}
</div>
}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_name1|}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
o4lys2ef6bto5nsdapaobsi8d1h0xv1
10158
10115
2026-04-02T11:52:59Z
De-Invincible
36
10158
wikitext
text/x-wiki
<div style="width: 300px; float: right; margin: 0 0 15px 15px; border-radius: 16px; overflow: hidden; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #d0d0d0; background: linear-gradient(to bottom, #ffffff, #fdfdfd);">
<!-- Header -->
<div style="text-align:center; font-size: 1.5em; font-weight: bold; padding: 20px 10px 10px; color: #1a1a1b; word-wrap: break-word; background: linear-gradient(to bottom, #e6f0ff, #ffffff); border-bottom: 1px solid #ccc;">
{{{name|{{{official_name|{{PAGENAME}}}}}}}}
{{#if: {{{other_name|}}}|
<div style="font-size: 55%; font-weight: normal; font-style: italic; color: #555; margin-top: 4px;">
{{{other_name}}}
</div>
}}
{{#if: {{{native_name|}}}|
<div style="font-size: 55%; font-weight: normal; font-style: italic; color: #555; margin-top: 4px;">
{{{native_name|}}}
</div>
}}
</div>
<!-- Subheader / Nickname -->
{{#if: {{{subheader|}}}{{{nickname|}}}{{{settlement_type|}}} |
<div style="text-align:center; font-size: 0.9em; font-weight: bold; margin: 0 15px 15px; border-radius: 6px; color: #ffffff; background-color: {{#switch: {{{settlement_type|}}}
| capital | Capital = #0e4576
| city | City = #43a047
| state | State = #ff8300
| lg | lga | LG | LGA = #795548
| town | Town = #616161
| #default = #166dba
}};">
{{#if: {{{nickname|}}}
| "<i>{{{nickname}}}</i>"
| {{{subheader|
{{#switch: {{{settlement_type|}}}
| capital | Capital = Mâiwàa Jàgo
| city | City = Marayà
| state | State = Jahà
| lg | lga | LG | LGA = Hukuuma Tòotai
| town | Town = Jàgo
| village = Jàgo
| #default = Lardì
}}
}}}
}}
</div>
}}
<table style="width: 100%; border-collapse: collapse; font-size: 0.92em; table-layout: fixed; background: transparent; margin: 0; color: #333;">
<!-- Images -->
{{#if: {{{image_skyline|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 8px 0;">
[[Payìil:{{{image_skyline}}}|287px]]
{{#if: {{{image_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{image_caption}}}</div> }}
</td></tr>
}}
{{#if: {{{image_map|}}} |
<tr><td colspan="2" style="text-align:center; padding: 0 0 10px 0;">
[[Payìil:{{{image_map}}}|287px]]
{{#if: {{{map_caption|}}} | <div style="font-size:75%; padding:3px 15px; color:#555; font-style: italic;">{{{map_caption}}}</div> }}
</td></tr>
}}
<!-- Flag / Shield / Seal -->
{{#if: {{{image_flag|}}}{{{image_shield|}}}{{{image_seal|}}} |
<tr>
<td colspan="2" style="text-align:center; padding: 10px 0;">
<div style="display: flex; justify-content: space-around; align-items: flex-end;">
{{#if: {{{image_flag|}}} | <div>[[Payìil:{{{image_flag}}}|border|110px]]<br /><small style="color:#666;">Tùuta</small></div> }}
{{#if: {{{image_shield|}}}{{{image_seal|}}} | <div>[[Payìil:{{#if:{{{image_shield|}}}|{{{image_shield}}}|{{{image_seal}}}}}|90px]]<br /><small style="color:#666;">Hatimì</small></div> }}
</div>
</td>
</tr>
}}
<!-- Bayàanai Section -->
<tr><th colspan="2" style="text-align:center; background-color: #f0f4f8; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Bayàanai</th></tr>
<!-- Subdivisions and Coordinates -->
{{#if: {{{native_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sim à bòo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{native_name}}}</td></tr>}}
{{#if: {{{subdivision_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type|Ƴali}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name}}}</td></tr>}}
{{#if: {{{subdivision_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type1|Jaha}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name1}}}</td></tr>}}
{{#if: {{{subdivision_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type2|Jàga tà mâiwàa}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name2}}}</td></tr>}}
{{#if: {{{state|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jahà:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{state}}}</td></tr>}}
{{#if: {{{lga|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Hukuuma tòotai:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{lga}}}</td></tr>}}
{{#if: {{{subdivision_name3|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{subdivision_type3|Yanki}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{subdivision_name3}}}</td></tr>}}
{{#if: {{{coordinates|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Kòodinet:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{coordinates}}}</td></tr>}}
<!-- Government -->
{{#if: {{{government_type|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{seat|}}}{{{established_date|}}} |<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Hùkuuma</th></tr>}}
{{#if: {{{government_type|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Tsarin mulki:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{government_type}}}</td></tr>}}
{{#if: {{{leader_name|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title|Governor}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name}}}</td></tr>}}
{{#if: {{{seat|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Jàga tà mâiwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{seat}}}</td></tr>}}
{{#if: {{{leader_name1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title1}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name1}}}</td></tr>}}
{{#if: {{{leader_name2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">{{{leader_title2}}}:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{leader_name2}}}</td></tr>}}
{{#if: {{{established_date|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ɗàwàa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{established_date}}}</td></tr>}}
<!-- Area, Population, GDP, Elevation -->
{{#if: {{{area_total_km2|}}}{{{population_total|}}}{{{population_density_km2|}}}{{{demographics1_info2|}}}{{{elevation_m|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Mbeesu mà mindì</th></tr>
}}
{{#if: {{{area_total_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Màalaa:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_total_km2}}} km²</td></tr>}}
{{#if: {{{population_total|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Gam mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_total}}} {{#if: {{{population_as_of|}}} | <small>({{{population_as_of}}})</small> }}</td></tr>}}
{{#if: {{{population_density_km2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Mâiwàa mà mindì:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{population_density_km2}}}</td></tr>}}
{{#if: {{{demographics1_info2|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Bàayàa mà jiha (GDP):</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{demographics1_info2}}} {{#if: {{{demographics1_info1|}}} | <small>({{{demographics1_info1}}})</small> }}</td></tr>}}
{{#if: {{{elevation_m|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Daatù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{elevation_m}}} m</td></tr>}}
<!-- Codes and Website -->
{{#if: {{{timezone|}}}{{{postal_code|}}}{{{area_code|}}}{{{website|}}} |
<tr><th colspan="2" style="text-align:center; background-color:#f0f4f8; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:8px 0; font-size:85%; font-weight:bold; text-transform:uppercase; letter-spacing:0.5px;">Kwàd</th></tr>
}}
{{#if: {{{timezone|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Sartù:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{timezone}}} (UTC{{{utc_offset|}}})</td></tr>}}
{{#if: {{{postal_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà jàgo:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{postal_code}}}</td></tr>}}
{{#if: {{{area_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà càɗi:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{area_code}}}</td></tr>}}
{{#if: {{{blank_info_sec1|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Ma'auni mà HDI:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{blank_info_sec1}}}</td></tr>}}
{{#if: {{{iso_code|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; border-bottom:1px solid #eee; color:#555;">Lamba mà ISO:</th><td style="width:55%; padding:8px 15px 8px 5px; border-bottom:1px solid #eee;">{{{iso_code}}}</td></tr>}}
{{#if: {{{website|}}} |<tr><th style="width:45%; text-align:left; padding:8px 15px; color:#555;">Jèere tà Sâunaa:</th><td style="width:55%; padding:8px 15px 8px 5px;">{{{website}}}</td></tr>}}
</table>
</div>
<noinclude>
== Usage ==
Copy and paste this code to use the template in an article.
<pre>
{{Settlement
| name =
| official_name =
| native_name =
| settlement_type =
| motto =
| nickname =
| image_skyline =
| image_caption =
| imagesize =
| image_flag =
| image_shield =
| image_seal =
| image_map =
| map_caption =
| image_map2 =
| map_caption2 =
| subdivision_name =
| subdivision_type1 =
| subdivision_name1 =
| subdivision_type2 =
| subdivision_name2 =
| coordinates =
| established_date =
| leader_title =
| leader_name =
| area_total_km2 =
| elevation_m =
| population_total =
| population_as_of =
| population_density_km2 =
| timezone =
| utc_offset =
| postal_code =
| area_code =
| website =
}}
</pre>
== Field Guide ==
Below is a guide for the custom labels used in this template:
* '''Name / Official Name:''' The common and formal name of the place.
* '''Motto:''' The official slogan (appears under the name).
* '''Sim à bòo''': Native name.
* '''Tùuta:''' Flag of the settlement.
* '''Hatimì:''' Shield, Seal, or Coat of Arms.
* '''Ƴali:''' Country (e.g., Nigeria).
* '''Jaha mà:''' The State or Province (defaults to "Jaha mà" unless subdivision_type1 is changed).
* '''Mbeesu mà mindì:''' Demographics section.
* '''Gam mà mindì:''' Total population.
* '''Lamba mà kwàr tà wàya:''' Postal code.
* '''Shàfi''': Official website link.
== Settlement Types ==
The header color changes automatically based on the **settlement_type** field:
{| class="wikitable"
! Type !! Color !! Result
|-
| capital || #0e4576 || Dark Blue
|-
| city || #43a047 || Green
|-
| state || #ff8300 || Orange
|-
| lg / lga || #795548 || Brown
|-
| village || #e91e63 || Pink/Red
|-
| #default || #166dba || Blue
|}
[[Sashì:Tampilet mà Infobox]]
{{INTERWIKI|Q5683132}}
</noinclude>
4oqki1wbjpbc1evb1cflov8xxz7ljhq
Geidam
0
1371
10098
5328
2026-04-02T06:35:28Z
De-Invincible
36
10098
wikitext
text/x-wiki
{{Infobox settlement
|name =Geidam
|other_name =
|native_name =
|settlement_type = town
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{Flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Yobe]]
|subdivision_type2 = Control
|subdivision_name2 =
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type = Democracy
|leader_title = Local Government Chairman
|leader_name = Habeeb elcready (All Progressives Congress)
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =4357
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 157,295
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities Kanuri 41% and hausa 37% and other is 32%
|population_blank1 =
|population_blank2_title = Religions Muslims
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{Coord|12|43|N|12|02|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 632
|area_code =
|iso_code = NG.YO.GE
|website =
|footnotes =
}}
'''Geidam''' nanta hukuuma tòotai a jáháa ma [[Yobe]], dîbî mà gàazàa mà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Yobe}}
[[Sashì:Jàgo]]
[[Sashì:Tòotacin mà Hukuuma mà Yobe]]
[[Sashì:Yobe]]
[[Sashì:Lanjèeriya]]
[[Sashì:Tòotai mà hukuma ma Lanjèeriya]]
{{INTERWIKI|Q5530097}}
l3l5zhkq83ngu7sz22tp8oswfcs65ab
Gujba
0
1402
10093
5527
2026-04-02T06:22:41Z
De-Invincible
36
10093
wikitext
text/x-wiki
{{Infobox settlement
|name =Gujba
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{Flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Yobe]]
|subdivision_type2 =
|subdivision_name2 =
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Dala Mala Buni (APC)
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =3239
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 130,088
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{Coord|11|29|52|N|11|55|51|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 621
|area_code =
|iso_code = NG.YO.GJ
|website =
|footnotes =
}}
'''Gujba''' nanta hukuuma tòotai a jáháa ma Yobe, dîbî mà gàazàa mà Lanjèeriya.
== Càlaa ==
{{Reflist}}
{{Yobe}}
[[Sashì:Jàgo]]
[[Sashì:Tòotacin mà Hukuuma mà Yobe]]
[[Sashì:Yobe]]
[[Sashì:Lanjèeriya]]
[[Sashì:Tòotai mà hukuma ma Lanjèeriya]]
{{INTERWIKI|Q5617047}}
elj5y3fqinfogkx760ltns9vy367s10
Itas/Gadau
0
1463
10022
9904
2026-04-01T13:27:49Z
Zaynab05
74
10022
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Itas/Gadau
| other_name =
| native_name =
| nickname =
| settlement_type = lga
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Bàuci]]
| subdivision_type2 =
| subdivision_name2 =
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hajawa Jibrin Gidado <ref>{{Cite news | url = https://dailypost.ng/2024/08/18/pdp-sweeps-all-20-lgas-in-bauchi-council-poll/ |location=Lagos, Nigeria| title = PDP sweeps all 20 LGAs in Bauchi council poll | access-date = 2025-01-28|newspaper=[[Daily Post (Nigeria)|Daily Post]]}}</ref>
| established_title =
| established_date = <!-- Area --------------------->
| area_magnitude =
| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1398
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 229,996
| population_density_km2 =
| population_density_urban_sq_mi =
| population_blank1_title = Ethnicities
| population_blank1 =
| population_blank2_title = Religions
| population_blank2 =
| population_density_blank1_km2 =
| population_density_blank1_sq_mi = <!-- General information --------------->|
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|11|52|N|9|58|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 751
| area_code =
| iso_code = NG.BA.IG
| website =
| footnotes =
}}
'''Itas/Gaɗau''' nanta hukuuma tòotai mà jahà mà [[Bàuci]] a dîbî tà gàazàa ma [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Bàuci}}
s2g1tj7vt8kjcemv99ucrr4qidvosrb
Katagum
0
1519
10020
9900
2026-04-01T13:15:29Z
Zaynab05
74
10020
wikitext
text/x-wiki
{{Infobox settlement
<!--See the Table at Infobox Settlement for all fields and descriptions of usage-->
<!-- Basic info ---------------->
|official_name = Katagum
|native_name = <!-- for cities whose native name is not in English -->
|other_name =
|settlement_type = <!--For Town or Village (Leave blank for the default City)-->
|image_skyline = Katagum Emirate Central Mosque (2).jpg
|imagesize =
|image_caption = Katagum Emirate Central Mosque
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_shield =
|shield_size =
|nickname =
|motto =
<!-- images and maps ----------->
|image_map =
|map_caption =
|pushpin_map = Nigeria<!-- the name of a location map as per http://en.wikipedia.org/wiki/Template:Location_map -->
|pushpin_label_position = bottom
|pushpin_map_caption = Location in Nigeria
<!-- Location ------------------>
|coordinates = {{coord|12|17|N|10|21|E|region:NG_type:city(4740)|display=inline,title}}
|subdivision_type = Ƴali
|subdivision_name = Lanjèeriya
|subdivision_type1 = Jaha
|subdivision_type2 =
|subdivision_type3 =
|subdivision_type4 =
|subdivision_name1 = [[Bàuci]]
|subdivision_name2 =
|subdivision_name3 =
|subdivision_name4 =
<!-- Politics ----------------->
|established_title = <!-- Settled -->
|established_date =
|established_title2 = <!-- Incorporated (town) -->
|established_date2 =
|established_title3 = <!-- Incorporated (city) -->
|established_date3 =
<!-- Area --------------------->
|government_footnotes =
|government_type =
|leader_title =
|leader_name =
|leader_title1 = <!-- for places with, say, both a mayor and a city manager -->
|leader_name1 =
|unit_pref = Imperial <!--Enter: Imperial, if Imperial (metric) is desired-->
|area_footnotes =
|area_total_km2 = <!-- ALL fields dealing with a measurements are subject to automatic unit conversion-->
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
|area_water_km2 =
<!-- Population ----------------------->
|elevation_footnotes = <!--for references: use <ref> </ref> tags-->
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
| population_as_of = 2022
| population_footnotes = <ref>{{Cite web |title=Bauchi State: Subdivision |url=https://www.citypopulation.de/en/nigeria/admin/NGA005__bauchi/|access-date=2024-02-05 |website=www.citypopulation.de}}</ref>
| population_total = 523,200
| population_density_km2 = auto
|population_blank1_title = Ethnicities
|population_blank1 =
<!-- General information --------------->
|population_blank2_title = Religions
|population_blank2 =
|population_note =
|postal_code_type = <!-- enter ZIP code, Postcode, Post code, Postal code... -->
|postal_code =
|area_code =
|website =
|footnotes =
|timezone =
|utc_offset =
|timezone_DST =
|utc_offset_DST =
}}
'''Katagum''' nanta hukuuma tòotai mà jahà mà [[Bàuci]] a dîbî tà gàazàa ma [[Lanjèeriya]]. Jàga tà mâiwàa na akata jàga tà Azare.
== Càlaa ==
{{Reflist}}
{{Bàuci}}
msnr2y759prznbvpafs523smcmxy0aq
10021
10020
2026-04-01T13:16:19Z
Zaynab05
74
10021
wikitext
text/x-wiki
{{Infobox settlement
<!--See the Table at Infobox Settlement for all fields and descriptions of usage-->
<!-- Basic info ---------------->
|official_name = Katagum
|native_name = <!-- for cities whose native name is not in English -->
|other_name =
|settlement_type = <!--For Town or Village (Leave blank for the default City)-->
|image_skyline = Katagum Emirate Central Mosque (2).jpg
|imagesize =
|image_caption = Katagum Emirate Central Mosque
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_shield =
|shield_size =
|nickname =
|motto =
<!-- images and maps ----------->
|image_map =
|map_caption =
|pushpin_map = Nigeria<!-- the name of a location map as per http://en.wikipedia.org/wiki/Template:Location_map -->
|pushpin_label_position = bottom
|pushpin_map_caption = Location in Nigeria
<!-- Location ------------------>
|coordinates = {{coord|12|17|N|10|21|E|region:NG_type:city(4740)|display=inline,title}}
|subdivision_type = Ƴali
|subdivision_name = Lanjèeriya
|subdivision_type1 = Jaha
|subdivision_type2 =
|subdivision_type3 =
|subdivision_type4 =
|subdivision_name1 = [[Bàuci]]
|subdivision_name2 =
|subdivision_name3 =
|subdivision_name4 =
<!-- Politics ----------------->
|established_title = <!-- Settled -->
|established_date =
|established_title2 = <!-- Incorporated (town) -->
|established_date2 =
|established_title3 = <!-- Incorporated (city) -->
|established_date3 =
<!-- Area --------------------->
|government_footnotes =
|government_type =
|leader_title =
|leader_name =
|leader_title1 = <!-- for places with, say, both a mayor and a city manager -->
|leader_name1 =
|unit_pref = Imperial <!--Enter: Imperial, if Imperial (metric) is desired-->
|area_footnotes =
|area_total_km2 = <!-- ALL fields dealing with a measurements are subject to automatic unit conversion-->
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
|area_water_km2 =
<!-- Population ----------------------->
|elevation_footnotes = <!--for references: use <ref> </ref> tags-->
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
| population_as_of = 2022
| population_footnotes = <ref>{{Cite web |title=Bauchi State: Subdivision |url=https://www.citypopulation.de/en/nigeria/admin/NGA005__bauchi/|access-date=2024-02-05 |website=www.citypopulation.de}}</ref>
| population_total = 523,200
| population_density_km2 = auto
|population_blank1_title = Ethnicities
|population_blank1 =
<!-- General information --------------->
|population_blank2_title = Religions
|population_blank2 =
|population_note =
|postal_code_type = <!-- enter ZIP code, Postcode, Post code, Postal code... -->
|postal_code =
|area_code =
|website =
|footnotes =
|timezone =
|utc_offset =
|timezone_DST =
|utc_offset_DST =
}}
'''Katagum''' nanta hukuuma tòotai mà jahà mà [[Bàuci]] a dîbî tà gàazàa ma [[Lanjèeriya]]. Jàga tà mâiwàa na akata jàga tà Azare.
== Càlaa ==
{{Reflist}}
{{Bàuci}}
[[Category:Bàuci]]
3s3bikm655hynwnsb40o7t38go9taca
Agaie
0
2210
10099
9786
2026-04-02T06:40:53Z
Zaynab05
74
10099
wikitext
text/x-wiki
'''Agaie''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
j6o7l8e1e5693jmgsk1qejp66z962q1
10100
10099
2026-04-02T06:44:47Z
Zaynab05
74
10100
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Agaie
| other_name = Farin Kasa
| native_name = Kin Bokun
| nickname =
| settlement_type = LGA
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Neja]]
| subdivision_type2 =
| subdivision_name2 =
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Sayuti Ibrahim Halilu
| leader_title1 = Idifu
| leader_name1 = Alhaji Yusuf Nuhu
| established_title =
| established_date = <!-- Area --------------------->
| area_magnitude =
| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1903
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 132,907
| population_density_km2 =
| population_density_urban_sq_mi =
| population_blank1_title = Ethnicities
| population_blank1 =
| population_blank2_title = Religions
| population_blank2 =
| population_density_blank1_km2 =
| population_density_blank1_sq_mi = <!-- General information --------------->|
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|9|01|N|6|19|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 911
| area_code =
| iso_code = NG.NI.AA
| website =
| footnotes =
}}
'''Agaie''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
f1v09kkbuow8hpof1hnsdghqfb8lq3q
10116
10100
2026-04-02T08:25:02Z
Zaynab05
74
10116
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Agaie
| other_name = Farin Kasa
| native_name = Kin Bokun
| nickname =
| settlement_type = LGA
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Neja]]
| subdivision_type2 =
| subdivision_name2 =
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Sayuti Ibrahim Halilu
| leader_title1 = Idifu
| leader_name1 = Alhaji Yusuf Nuhu
| established_title =
| established_date = <!-- Area --------------------->
| area_magnitude =
| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1903
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 132,907
| population_density_km2 =
| population_density_urban_sq_mi =
| population_blank1_title = Ethnicities
| population_blank1 =
| population_blank2_title = Religions
| population_blank2 =
| population_density_blank1_km2 =
| population_density_blank1_sq_mi = <!-- General information --------------->|
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|9|01|N|6|19|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 911
| area_code =
| iso_code = NG.NI.AA
| website =
| footnotes =
}}
'''Agaie''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Neja}}
[[Category:Neja]]
h105e5fjajvk20oiacfyqg1hfq83eno
Agwara
0
2211
10114
9787
2026-04-02T08:01:27Z
De-Invincible
36
10114
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Agwara
| other_name =
| native_name = Kpacharka
| nickname = AGR CITY
| settlement_type = LGA
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Neja]]
| subdivision_type2 =
| subdivision_name2 =
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Alh. Iliyasu Zakari
| established_title =
| established_date = <!-- Area --------------------->
| area_magnitude =
| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1538
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 67,413
| population_density_km2 =
| population_density_urban_sq_mi =
| population_blank1_title = Ethnicities
| population_blank1 =
| population_blank2_title = Religions
| population_blank2 =
| population_density_blank1_km2 =
| population_density_blank1_sq_mi = <!-- General information --------------->|
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|10|42|N|4|35|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 923
| area_code =
| iso_code = NG.NI.AW
| website =
| footnotes =
}}
'''Agwara''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
a3jxphugy2x566m96jc4jmn7gic2wdv
Bida
0
2212
10117
9788
2026-04-02T08:30:18Z
Zaynab05
74
10117
wikitext
text/x-wiki
'''Bida''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
qxvrm3ja4luht20rumm9jp6u4nrl6y6
10159
10117
2026-04-02T11:54:05Z
Zaynab05
74
10159
wikitext
text/x-wiki
{{Infobox settlement
|official_name = Bida
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map = Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption = North Central
|subdivision_type = Ƴali
|subdivision_name = {{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 = [[Neja]]
|subdivision_type2 =
|subdivision_name2 =
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title = Ciyaman
|leader_name = Hon. Bala Shaba
|leader_title1 = Idifu
|leader_name1 = [[Yahaya Abubakar]]
|established_title =
|established_date =
|area_magnitude =
|unit_pref = Metric
|area_footnotes =
|area_total_km2 = 1698
|area_land_km2 =
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 266,008
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
||timezone = [[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|9|05|N|6|01|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 10
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type = 3-digit postal code prefix
|postal_code = 912
|area_code =
|iso_code = NG.NI.BI
|website =
|footnotes =
}}
'''Bida''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
m9exikx3mvtsdp80yq90osp3judytky
10160
10159
2026-04-02T11:55:06Z
Zaynab05
74
10160
wikitext
text/x-wiki
{{Infobox settlement
|official_name = Bida
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map = Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption = North Central
|subdivision_type = Ƴali
|subdivision_name = {{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 = [[Neja]]
|subdivision_type2 =
|subdivision_name2 =
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title = Ciyaman
|leader_name = Hon. Bala Shaba
|leader_title1 = Idifu
|leader_name1 = [[Yahaya Abubakar]]
|established_title =
|established_date =
|area_magnitude =
|unit_pref = Metric
|area_footnotes =
|area_total_km2 = 1698
|area_land_km2 =
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 266,008
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
||timezone = [[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|9|05|N|6|01|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 10
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type = 3-digit postal code prefix
|postal_code = 912
|area_code =
|iso_code = NG.NI.BI
|website =
|footnotes =
}}
'''Bida''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Neja}}
[[Category:Neja]]
3o7w704wmuhx57efe2o0eqojzrxv47b
Borgu
0
2213
10161
9789
2026-04-02T11:55:45Z
Zaynab05
74
10161
wikitext
text/x-wiki
'''Borgu''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
q0xwh45jla9wq1lckre33884w6pea57
Mashegu
0
2225
10070
9801
2026-04-01T16:50:51Z
Zaynab05
74
10070
wikitext
text/x-wiki
'''Mashegu''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
ib9pjwsij9tikzclt39waxuyilzj7jm
10071
10070
2026-04-01T17:58:27Z
Zaynab05
74
10071
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Mashegu
|other_name =
|native_name =
|nickname =
|settlement_type = [[Local Government Areas of Nigeria|LGA]] and town
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Neja]]
|subdivision_type2 =
|subdivision_name2 =
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Shuaibu Haruna Kulho
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =9182
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 215,022
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|9|57|N|5|13|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 923
|area_code =
|iso_code = NG.NI.MS
|website =
|footnotes =
}}
'''Mashegu''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
r0y5lwfm6pkkvmm6xe0s9adx5bhhp5i
10072
10071
2026-04-01T17:59:30Z
Zaynab05
74
10072
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Mashegu
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Neja]]
|subdivision_type2 =
|subdivision_name2 =
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Shuaibu Haruna Kulho
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =9182
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 215,022
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|9|57|N|5|13|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 923
|area_code =
|iso_code = NG.NI.MS
|website =
|footnotes =
}}
'''Mashegu''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Neja}}
[[Category:Neja]]
ls4k7maw1343pbvxutv5sazslebcgnn
Mokwa
0
2226
10069
9802
2026-04-01T16:50:34Z
Zaynab05
74
10069
wikitext
text/x-wiki
'''Mokwa''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
mvnmr1dwfpdjmkiddca44mjbzjuzq58
Munya
0
2227
10067
9803
2026-04-01T16:50:01Z
Zaynab05
74
10067
wikitext
text/x-wiki
'''Munya''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
ta2tm2ru998wuezlsyv8ikz5j4idz1a
Paikoro
0
2228
10068
9804
2026-04-01T16:50:19Z
Zaynab05
74
10068
wikitext
text/x-wiki
'''Paikoro''' nanta tòotai ma hukuma ne mà [[Neja]] à ƴal tà [[Lanjèeriya]].
{{Neja}}
cv7xvp1rn5h0xc2v1jsl9au5vrvwb3i
Gassol
0
2235
10032
9811
2026-04-01T14:06:25Z
Zaynab05
74
10032
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Gassol
|other_name =
|native_name =
|nickname =
|settlement_type = [[Local Government Areas of Nigeria|LGA]]
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Country
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = [[States of Nigeria|State]]
|subdivision_name1 =[[Taraba State]]
|subdivision_type2 =Local Government Headquarters
|subdivision_name2 =Mutum Biyu (Mutumbiyu)
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Local Government Chairman and the Head of the Local Government Council
|leader_name = Hon. Abubakar Sadiq
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =5548
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 244,749
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|8|24|N|10|32|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 620
|area_code =
|iso_code = NG.TA.GS
|website =
|footnotes =
}}
'''Gassol''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
==Càlaa==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
awips2r7svo4cizg2cfksj62sgv9gqj
10033
10032
2026-04-01T14:07:50Z
Zaynab05
74
10033
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Gassol
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jago
|subdivision_name2 =Mutum Biyu (Mutumbiyu)
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name = Hon. Abubakar Sadiq
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =5548
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 244,749
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|8|24|N|10|32|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 620
|area_code =
|iso_code = NG.TA.GS
|website =
|footnotes =
}}
'''Gassol''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
==Càlaa==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
r755jn9edvc9nrqusplhuy49ml08swj
Ibi, Lanjèeriya
0
2236
10034
9812
2026-04-01T14:12:49Z
Zaynab05
74
10034
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Ibi
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jago
|subdivision_name2 =Ibi Town
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyama
|leader_name =Iliya Muhammad Ajibu
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =2672
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 84,054
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|8|19|N|9|51|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 620
|area_code =
|iso_code = NG.TA.IB
|website =
|footnotes =
}}
'''Ibi'''{{Audio|LL-Q56475 (hau)-Eunice Ameh-Ibi.wav|Listen|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
1kvab3z36o2d3dbzylng30lamfprb6m
10035
10034
2026-04-01T14:13:41Z
Zaynab05
74
10035
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Ibi
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jago
|subdivision_name2 =Ibi Town
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyama
|leader_name =Iliya Muhammad Ajibu
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =2672
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 84,054
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|8|19|N|9|51|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 620
|area_code =
|iso_code = NG.TA.IB
|website =
|footnotes =
}}
'''Ibi'''{{Audio|LL-Q56475 (hau)-Eunice Ameh-Ibi.wav|Listen|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
9d55636izrxkxfvndo1iia8xldn9xfq
10036
10035
2026-04-01T14:13:54Z
Zaynab05
74
10036
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Ibi
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jago
|subdivision_name2 =Ibi Town
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyama
|leader_name =Iliya Muhammad Ajibu
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =2672
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 84,054
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|8|19|N|9|51|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 620
|area_code =
|iso_code = NG.TA.IB
|website =
|footnotes =
}}
'''Ibi''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Ibi.wav|Listen|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
3dl6zkaa9blc8vwokthyied199hw3vl
10037
10036
2026-04-01T14:14:19Z
Zaynab05
74
10037
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Ibi
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jago
|subdivision_name2 =Ibi Town
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyama
|leader_name =Iliya Muhammad Ajibu
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =2672
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 84,054
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|8|19|N|9|51|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 620
|area_code =
|iso_code = NG.TA.IB
|website =
|footnotes =
}}
'''Ibi''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Ibi.wav|kàlaa|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
9vbfxkup5ld6stxie54gs1mfeose2ew
Karim Lamido
0
2237
10038
9813
2026-04-01T14:18:36Z
Zaynab05
74
10038
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Karim Lamido
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa
|subdivision_name2 =Karim Lamido
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Hon. Bitrus Danjos
<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =6620
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 195,844
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|9|12|N|10|53|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 662
|area_code =
|iso_code = NG.TA.KL
|website =
|footnotes =
}}
'''Karim Lamido''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Karim Lamido.wav|kàlaa|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
8o9e6cuyy2hgydv27pra0mo2kpn66dm
10039
10038
2026-04-01T14:19:19Z
Zaynab05
74
10039
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Karim Lamido
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa
|subdivision_name2 =Karim Lamido
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Hon. Bitrus Danjos
<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =6620
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 195,844
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|9|12|N|10|53|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 662
|area_code =
|iso_code = NG.TA.KL
|website =
|footnotes =
}}
'''Karim Lamido''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Karim Lamido.wav|kàlaa|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
39o0kb3m2yczsj2qdfeljmmp46y4u61
10040
10039
2026-04-01T14:19:44Z
Zaynab05
74
10040
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Karim Lamido
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa
|subdivision_name2 =Karim Lamido
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Hon. Bitrus Danjos
<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =6620
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 195,844
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|9|12|N|10|53|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 662
|area_code =
|iso_code = NG.TA.KL
|website =
|footnotes =
}}
'''Karim Lamiɗo''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Karim Lamido.wav|kàlaa|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
76yi5rk77q6i4fcctgrbnmiszx6gcq2
Lau, Lanjèeriya
0
2238
10041
9815
2026-04-01T14:23:24Z
Zaynab05
74
10041
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Lau, Nigeria
| other_name =
| native_name = Lau
| nickname = Launawa
| settlement_type = [[Local Government Areas of Nigeria|LGA]] and town
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria#Africa
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa
| subdivision_name2 = Lau
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Idifu
| leader_name = H.R.H Ahj. Abubakar Umar Danburam III
| leader_title1 = Bà mà majalisa
| leader_name1 = Hon. Nigeria S Jatau<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 =
| area_land_km2 =
| population_as_of = 2006 95, 590
| population_footnotes =
| population_note =
| population_total =
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{Coord|format=dms|display=it}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code = 662
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Lau''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Lau.wav|kàlaa|help=no}}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
3frl23wbznd1ewjq2j9v3w3gezor2pk
10042
10041
2026-04-01T14:24:14Z
Zaynab05
74
10042
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Lau, Nigeria
| other_name =
| native_name = Lau
| nickname = Launawa
| settlement_type = [[Local Government Areas of Nigeria|LGA]] and town
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria#Africa
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa
| subdivision_name2 = Lau
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Idifu
| leader_name = H.R.H Ahj. Abubakar Umar Danburam III
| leader_title1 = Bà mà majalisa
| leader_name1 = Hon. Nigeria S Jatau<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 =
| area_land_km2 =
| population_as_of = 2006 95, 590
| population_footnotes =
| population_note =
| population_total =
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{Coord|format=dms|display=it}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code = 662
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Lau''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Lau.wav|kàlaa|help=no}}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
lpacr0e176i6sdk9ysav5uoryxcdsku
10043
10042
2026-04-01T16:09:52Z
Zaynab05
74
10043
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Lau
| other_name =
| native_name = Lau
| nickname = Launawa
| settlement_type = [[Local Government Areas of Nigeria|LGA]] and town
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria#Africa
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa
| subdivision_name2 = Lau
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Idifu
| leader_name = H.R.H Ahj. Abubakar Umar Danburam III
| leader_title1 = Bà mà majalisa
| leader_name1 = Hon. Nigeria S Jatau<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 =
| area_land_km2 =
| population_as_of = 2006 95, 590
| population_footnotes =
| population_note =
| population_total =
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{Coord|format=dms|display=it}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code = 662
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Lau''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Lau.wav|kàlaa|help=no}}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
suvh0scj9bef38kaohytq61wwb4cj8c
Sardauna, Lanjèeriya
0
2239
10044
9817
2026-04-01T16:12:18Z
Zaynab05
74
10044
wikitext
text/x-wiki
{{Infobox settlement
|official_name = Sardauna
|other_name =
|native_name = Mambilla Plateau
|nickname =
|settlement_type = [[Local government areas of Nigeria|LGA]]
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =
|pushpin_label_position =
|pushpin_mapsize =
|pushpin_map_caption =
|subdivision_type = Ƴali
|subdivision_name = {{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 = [[Taraba]]
|subdivision_type2 = Mâiwàa Jàgo
|subdivision_name2 = [[Gembu, Lanjèeriya|Gembu]]
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title = Ciyaman
|leader_name = Hon. Umaru<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
|established_title =
|established_date =
|area_magnitude =
|unit_pref = Imperial
|area_footnotes =
|area_total_km2 =
|area_land_km2 =
|population_as_of = 2006
|population_footnotes =
|population_note =
|population_total =
|population_density_km2 =
|timezone = [[West Africa Time|WAT]]
|utc_offset = +01:00
|timezone_DST =
|utc_offset_DST =
|coordinates =
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type =
|postal_code =
|area_code =
|blank_name =
|blank_info =
|website =
|footnotes =
}}
'''Sardauna''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
7ip74njr7tufhgm7lozluulm82b9um8
10045
10044
2026-04-01T16:13:40Z
Zaynab05
74
10045
wikitext
text/x-wiki
{{Infobox settlement
|official_name = Sardauna
|other_name =
|native_name = Mambilla Plateau
|nickname =
|settlement_type = [[Local government areas of Nigeria|LGA]]
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =
|pushpin_label_position =
|pushpin_mapsize =
|pushpin_map_caption =
|subdivision_type = Ƴali
|subdivision_name = {{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 = [[Taraba]]
|subdivision_type2 = Mâiwàa Jàgo
|subdivision_name2 = [[Gembu, Lanjèeriya|Gembu]]
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title = Ciyaman
|leader_name = Hon. Umaru<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
|established_title =
|established_date =
|area_magnitude =
|unit_pref = Imperial
|area_footnotes =
|area_total_km2 =
|area_land_km2 =
|population_as_of = 2006
|population_footnotes =
|population_note =
|population_total =
|population_density_km2 =
|timezone = [[West Africa Time|WAT]]
|utc_offset = +01:00
|timezone_DST =
|utc_offset_DST =
|coordinates =
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type =
|postal_code =
|area_code =
|blank_name =
|blank_info =
|website =
|footnotes =
}}
'''Sardauna''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Sardauna.wav|kàlaa|help=no}}, (àsau '''Mambilla''') nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
3luvbj5s2e0qnienb7i7fsy6ni61xm6
10046
10045
2026-04-01T16:17:08Z
Zaynab05
74
10046
wikitext
text/x-wiki
{{Infobox settlement
|official_name = Sardauna
|other_name =
|native_name = Mambilla Plateau
|nickname =
|settlement_type = [[Local government areas of Nigeria|LGA]]
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =
|pushpin_label_position =
|pushpin_mapsize =
|pushpin_map_caption =
|subdivision_type = Ƴali
|subdivision_name = {{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 = [[Taraba]]
|subdivision_type2 = Mâiwàa Jàgo
|subdivision_name2 = [[Gembu, Lanjèeriya|Gembu]]
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title = Ciyaman
|leader_name = Hon. Umaru<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | accessdate=11 February 2020 }}</ref>
|established_title =
|established_date =
|area_magnitude =
|unit_pref = Imperial
|area_footnotes =
|area_total_km2 =
|area_land_km2 =
|population_as_of = 2006
|population_footnotes =
|population_note =
|population_total =
|population_density_km2 =
|timezone = [[West Africa Time|WAT]]
|utc_offset = +01:00
|timezone_DST =
|utc_offset_DST =
|coordinates =
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type =
|postal_code =
|area_code =
|blank_name =
|blank_info =
|website =
|footnotes =
}}
'''Sardauna''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Sardauna.wav|kàlaa|help=no}}, (àsau '''Mambilla''') nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
5dbhgmakljfziyhue6eotzxmxvaclju
Takum
0
2240
10047
9818
2026-04-01T16:19:44Z
Zaynab05
74
10047
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Takum
| nickname = TTM
| settlement_type = LGA
| motto = Together We are One
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_label_position =
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Country
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Takum
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Boyi Manja [CTC]
<!-- Area --------------------->| area_magnitude =
| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 2503
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 135,349
| population_density_km2 =
| population_density_urban_sq_mi =
| population_blank1_title = Ethnicities
| population_blank1 =
| population_blank2_title = Religions
| population_blank2 =
| population_density_blank1_km2 =
| population_density_blank1_sq_mi = <!-- General information --------------->|
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|7|15|N|9|59|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 671
| area_code =
| iso_code = NG.TA.TA
| website =
| footnotes =
}}
'''Takum''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
3jvf3dadv4zxexddnb8ippze3umr6u0
10048
10047
2026-04-01T16:20:21Z
Zaynab05
74
10048
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Takum
| nickname = TTM
| settlement_type = LGA
| motto = Together We are One
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_label_position =
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Country
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Takum
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Boyi Manja [CTC]
<!-- Area --------------------->| area_magnitude =
| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 2503
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 135,349
| population_density_km2 =
| population_density_urban_sq_mi =
| population_blank1_title = Ethnicities
| population_blank1 =
| population_blank2_title = Religions
| population_blank2 =
| population_density_blank1_km2 =
| population_density_blank1_sq_mi = <!-- General information --------------->|
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|7|15|N|9|59|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 671
| area_code =
| iso_code = NG.TA.TA
| website =
| footnotes =
}}
'''Takum''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
40o8c184vjn44l7w6ombsoh76o2s3te
10049
10048
2026-04-01T16:21:29Z
Zaynab05
74
10049
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Takum
| nickname = TTM
| settlement_type = LGA
| motto = Together We are One
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_label_position =
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Country
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Takum
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Boyi Manja [CTC]
<!-- Area --------------------->| area_magnitude =
| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 2503
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 135,349
| population_density_km2 =
| population_density_urban_sq_mi =
| population_blank1_title = Ethnicities
| population_blank1 =
| population_blank2_title = Religions
| population_blank2 =
| population_density_blank1_km2 =
| population_density_blank1_sq_mi = <!-- General information --------------->|
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|7|15|N|9|59|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 671
| area_code =
| iso_code = NG.TA.TA
| website =
| footnotes =
}}
'''Takum''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Takum.wav|kàlaa|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
19ob2zrvqmiahu78jkd0t3ehbhz0c8v
Ussa, Lanjèeriya
0
2242
10050
9837
2026-04-01T16:23:28Z
Zaynab05
74
10050
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Ussa
| other_name =
| native_name = Askaen
| nickname =
| settlement_type = [[Local Government Areas of Nigeria|LGA]]
| motto =
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Country
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = [[States of Nigeria|State]]
| subdivision_name1 = [[Taraba State]]
| subdivision_type2 =
| subdivision_name2 =
| government_footnotes =
| leader_title = Chairman
| leader_party = [[People's Democratic Party (Nigeria)|PDP]]
| leader_name = Hon. (Amb). Peter Shenwun
| leader_name2 = Haruna habila Timothy
| established_date = 1996
| seat = Lissam
<!-- Area --------------------->| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1495
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 92,017
| population_density_km2 = auto
<!-- General information --------------->| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|7|07|N|10|05|E|type:adm2nd_region:NG|display=inline,title}}
| elevation_footnotes =
| elevation_m = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 671
| area_code =
| iso_code = NG.TA.US
| website =
| footnotes =
}}
'''Ussa''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Ussa.wav|Listen|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
ng9jun1i6dvehgc14go5d0ii1z3bxhp
10051
10050
2026-04-01T16:25:09Z
Zaynab05
74
10051
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Ussa
| other_name = Askaen
| native_name = Askaen
| nickname = Askaen
| settlement_type = LGA
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Country
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 =
| subdivision_name2 =
| government_footnotes =
| leader_title = Ciyaman
| leader_party = [[People's Democratic Party (Nigeria)|PDP]]
| leader_name = Hon. (Amb). Peter Shenwun
| leader_name2 = Haruna habila Timothy
| established_date = 1996
| seat = Lissam
<!-- Area --------------------->| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1495
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 92,017
| population_density_km2 = auto
<!-- General information --------------->| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|7|07|N|10|05|E|type:adm2nd_region:NG|display=inline,title}}
| elevation_footnotes =
| elevation_m = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 671
| area_code =
| iso_code = NG.TA.US
| website =
| footnotes =
}}
'''Ussa''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Ussa.wav|Listen|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
iczmxidm6f7ga1jhi5nax08ergp3h7j
10052
10051
2026-04-01T16:26:12Z
Zaynab05
74
10052
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Ussa
| other_name = Askaen
| native_name = Askaen
| nickname = Askaen
| settlement_type = LGA
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Country
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 =
| subdivision_name2 =
| government_footnotes =
| leader_title = Ciyaman
| leader_party = [[People's Democratic Party (Nigeria)|PDP]]
| leader_name = Hon. (Amb). Peter Shenwun
| leader_name2 = Haruna habila Timothy
| established_date = 1996
| seat = Lissam
<!-- Area --------------------->| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1495
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 92,017
| population_density_km2 = auto
<!-- General information --------------->| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|7|07|N|10|05|E|type:adm2nd_region:NG|display=inline,title}}
| elevation_footnotes =
| elevation_m = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 671
| area_code =
| iso_code = NG.TA.US
| website =
| footnotes =
}}
'''Ussa''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Ussa.wav|Listen|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
qbyy8hm9d3mnw14upvhbbucnfudaahf
10053
10052
2026-04-01T16:26:32Z
Zaynab05
74
10053
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Ussa
| other_name = Askaen
| native_name = Askaen
| nickname = Askaen
| settlement_type = LGA
| image_skyline =
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_mapsize = 250
| pushpin_map_caption = Location in Nigeria
| subdivision_type = Country
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 =
| subdivision_name2 =
| government_footnotes =
| leader_title = Ciyaman
| leader_party = [[People's Democratic Party (Nigeria)|PDP]]
| leader_name = Hon. (Amb). Peter Shenwun
| leader_name2 = Haruna habila Timothy
| established_date = 1996
| seat = Lissam
<!-- Area --------------------->| unit_pref = Metric
| area_footnotes =
| area_total_km2 = 1495
| area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
<!-- Population ----------------------->| population_as_of = 2006 census
| population_footnotes =
| population_note =
| population_total = 92,017
| population_density_km2 = auto
<!-- General information --------------->| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|7|07|N|10|05|E|type:adm2nd_region:NG|display=inline,title}}
| elevation_footnotes =
| elevation_m = <!-- Area/postal codes & others -------->
| postal_code_type = 3-digit postal code prefix
| postal_code = 671
| area_code =
| iso_code = NG.TA.US
| website =
| footnotes =
}}
'''Ussa''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Ussa.wav|kàlaa|help=no }}, nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
rg1q56402wa9yd5i0iy88ozihmljhqn
Wukari
0
2243
10054
9838
2026-04-01T16:30:17Z
Zaynab05
74
10054
wikitext
text/x-wiki
{{Infobox settlement
|official_name = Wukari
|native_name = Ukari
|other_name = Waka
|nickname = Waka
|settlement_type = LGA
|motto =
|image_skyline = Sukari LG Secretariat.jpg
|imagesize =
|image_caption = Wukari Local Government Secretariat
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Hukuuma Tòotai
|subdivision_name2 = Wukari
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type = Dimokuraɗiyya
|leader_title = Ciyaman
|leader_name = Samaila Agbu<ref>{{Cite web|last=admin|title=Local Govt. Chairmen|url=https://tarabastate.gov.ng/local-govt-chairmen/|access-date=2020-08-18|website=TARABA STATE GOVERNMENT|language=en-GB}}</ref>
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =4308
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 241,546
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|7|51|N|9|47|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 670
|area_code =
|iso_code = NG.TA.WU
|blank_name = [[Köppen climate classification|Climate]]
|blank_info = [[Tropical savanna climate|Aw]]
|website =
|footnotes =
}}
'''Wukari''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
lfyk9sxk5ans5uod33n20a4u4i2iqnx
10055
10054
2026-04-01T16:31:14Z
Zaynab05
74
10055
wikitext
text/x-wiki
{{Infobox settlement
|official_name = Wukari
|native_name = Ukari
|other_name = Waka
|nickname = Waka
|settlement_type = LGA
|motto =
|image_skyline = Sukari LG Secretariat.jpg
|imagesize =
|image_caption = Wukari Local Government Secretariat
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =Nigeria
|pushpin_label_position =
|pushpin_mapsize=250
|pushpin_map_caption =Location in Nigeria
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Hukuuma Tòotai
|subdivision_name2 = Wukari
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type = Dimokuraɗiyya
|leader_title = Ciyaman
|leader_name = Samaila Agbu<ref>{{Cite web|last=admin|title=Local Govt. Chairmen|url=https://tarabastate.gov.ng/local-govt-chairmen/|access-date=2020-08-18|website=TARABA STATE GOVERNMENT|language=en-GB}}</ref>
|established_title =
|established_date =
<!-- Area --------------------->
|area_magnitude =
|unit_pref =Metric
|area_footnotes =
|area_total_km2 =4308
|area_land_km2 = <!--See table @ Template:Infobox Settlement for details on automatic unit conversion-->
<!-- Population ----------------------->
|population_as_of = 2006 census
|population_footnotes =
|population_note =
|population_total = 241,546
|population_density_km2 =
|population_density_urban_sq_mi =
|population_blank1_title = Ethnicities
|population_blank1 =
|population_blank2_title = Religions
|population_blank2 =
|population_density_blank1_km2 =
|population_density_blank1_sq_mi =
<!-- General information --------------->
||timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates = {{coord|7|51|N|9|47|E|type:adm2nd_region:NG|display=inline,title}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
<!-- Area/postal codes & others -------->
|postal_code_type = 3-digit postal code prefix
|postal_code = 670
|area_code =
|iso_code = NG.TA.WU
|blank_name = [[Köppen climate classification|Climate]]
|blank_info = [[Tropical savanna climate|Aw]]
|website =
|footnotes =
}}
'''Wukari''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
9q7rkbk7d51akwmblacjvavwkpwdqot
Yorro
0
2244
10056
9839
2026-04-01T16:35:54Z
Zaynab05
74
10056
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Yorro
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =
|pushpin_label_position =
|pushpin_mapsize=
|pushpin_map_caption =
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jàgo
|subdivision_name2 =Kpantisawa
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Hon Dr Martina Anthony (Mrs)<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
|established_title =
|established_date =
|area_magnitude =
|unit_pref =Imperial
|area_footnotes =
|area_total_km2 =
|area_land_km2 =
|population_as_of =2006
|population_footnotes =
|population_note =
|population_total =
|population_density_km2 =
|timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates =
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type =
|postal_code =
|area_code =
|blank_name =
|blank_info =
|website =
|footnotes =
}}
'''Yarro''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
37u6x12m37jbzm49xohtucblqgddocd
10057
10056
2026-04-01T16:36:24Z
Zaynab05
74
10057
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Yorro
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =
|pushpin_label_position =
|pushpin_mapsize=
|pushpin_map_caption =
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jàgo
|subdivision_name2 =Kpantisawa
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Hon Dr Martina Anthony (Mrs)<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
|established_title =
|established_date =
|area_magnitude =
|unit_pref =Imperial
|area_footnotes =
|area_total_km2 =
|area_land_km2 =
|population_as_of =2006
|population_footnotes =
|population_note =
|population_total =
|population_density_km2 =
|timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates =
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type =
|postal_code =
|area_code =
|blank_name =
|blank_info =
|website =
|footnotes =
}}
'''Yorro'''{{Audio|LL-Q56475 (hau)-Eunice Ameh-Yorro.wav|kàlaa|help=no}},' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
{{Taraba}}
ly66h1ikr3o2uuj308zwuxvgfwmj18e
10058
10057
2026-04-01T16:37:07Z
Zaynab05
74
10058
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Yorro
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =
|pushpin_label_position =
|pushpin_mapsize=
|pushpin_map_caption =
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jàgo
|subdivision_name2 =Kpantisawa
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Hon Dr Martina Anthony (Mrs)<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
|established_title =
|established_date =
|area_magnitude =
|unit_pref =Imperial
|area_footnotes =
|area_total_km2 =
|area_land_km2 =
|population_as_of =2006
|population_footnotes =
|population_note =
|population_total =
|population_density_km2 =
|timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates =
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type =
|postal_code =
|area_code =
|blank_name =
|blank_info =
|website =
|footnotes =
}}
'''Yorro'''{{Audio|LL-Q56475 (hau)-Eunice Ameh-Yorro.wav|kàlaa|help=no}},' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
8kwm3fdlwrrf72zvfadkz3oab2e1jzz
10059
10058
2026-04-01T16:37:20Z
Zaynab05
74
10059
wikitext
text/x-wiki
{{Infobox settlement
|official_name =Yorro
|other_name =
|native_name =
|nickname =
|settlement_type = LGA
|motto =
|image_skyline =
|imagesize =
|image_caption =
|image_flag =
|flag_size =
|image_seal =
|seal_size =
|image_map =
|mapsize =
|map_caption =
|pushpin_map =
|pushpin_label_position =
|pushpin_mapsize=
|pushpin_map_caption =
|subdivision_type = Ƴali
|subdivision_name ={{flag|Nigeria}}
|subdivision_type1 = Jaha
|subdivision_name1 =[[Taraba]]
|subdivision_type2 =Mâiwàa Jàgo
|subdivision_name2 =Kpantisawa
|subdivision_type3 =
|subdivision_name3 =
|government_footnotes =
|government_type =
|leader_title =Ciyaman
|leader_name =Hon Dr Martina Anthony (Mrs)<ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
|established_title =
|established_date =
|area_magnitude =
|unit_pref =Imperial
|area_footnotes =
|area_total_km2 =
|area_land_km2 =
|population_as_of =2006
|population_footnotes =
|population_note =
|population_total =
|population_density_km2 =
|timezone =[[West Africa Time|WAT]]
|utc_offset = +1
|timezone_DST =
|utc_offset_DST =
|coordinates =
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
|elevation_footnotes =
|elevation_m =
|elevation_ft =
|postal_code_type =
|postal_code =
|area_code =
|blank_name =
|blank_info =
|website =
|footnotes =
}}
'''Yorro''' {{Audio|LL-Q56475 (hau)-Eunice Ameh-Yorro.wav|kàlaa|help=no}},' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
5rxztiiu9snaifvnuq2hmy0q8z4m5m0
Zing, Lanjèeriya
0
2246
10060
9843
2026-04-01T16:38:06Z
Zaynab05
74
10060
wikitext
text/x-wiki
'''Zing''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Catgory:Taraba]]
6hx1l9gt7hrc6o7m8g8i13xb8hh2p9u
10061
10060
2026-04-01T16:40:13Z
Zaynab05
74
10061
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Zing, Nigeria
| other_name =
| native_name =
| nickname =
| settlement_type = [[Local Government Areas of Nigeria|LGA]] and town
| motto =
| image_skyline = Landscape in Zing, Taraba State, Nigerian.jpg
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Zing
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Davoro K <ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 = 1,030
| area_land_km2 =
| population_as_of = 2006
| population_footnotes =
| population_note =
| population_total = 127,363
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|display=title,inline}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code =
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Zing''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Catgory:Taraba]]
mx0pux2vv58vhhf0s1xtif4apjjwqh8
10062
10061
2026-04-01T16:40:43Z
Zaynab05
74
10062
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Zing
| other_name =
| native_name =
| nickname =
| settlement_type = [[Local Government Areas of Nigeria|LGA]] and town
| motto =
| image_skyline = Landscape in Zing, Taraba State, Nigerian.jpg
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Zing
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Davoro K <ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 = 1,030
| area_land_km2 =
| population_as_of = 2006
| population_footnotes =
| population_note =
| population_total = 127,363
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|display=title,inline}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code =
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Zing''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Catgory:Taraba]]
thu78h5uiqqcftjpvxt8ydmoog8f4co
10063
10062
2026-04-01T16:43:20Z
Zaynab05
74
10063
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Zing
| other_name =
| native_name =
| nickname =
| settlement_type = [[Local Government Areas of Nigeria|LGA]] and town
| motto =
| image_skyline = Landscape in Zing, Taraba State, Nigerian.jpg
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Zing
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Davoro K <ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 = 1,030
| area_land_km2 =
| population_as_of = 2006
| population_footnotes =
| population_note =
| population_total = 127,363
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|9|11|7|display=title,inline}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code =
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Zing''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Catgory:Taraba]]
3g8zndi0ypnf7tfvnr79by243o3w5jt
10064
10063
2026-04-01T16:44:41Z
Zaynab05
74
10064
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Zing
| other_name =
| native_name =
| nickname =
| settlement_type = LGA
| motto =
| image_skyline = Landscape in Zing, Taraba State, Nigerian.jpg
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Zing
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Davoro K <ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 = 1,030
| area_land_km2 =
| population_as_of = 2006
| population_footnotes =
| population_note =
| population_total = 127,363
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|9|11|7|display=title,inline}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code =
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Zing''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Catgory:Taraba]]
tk0hb58kokjd7upkwrmdtonm92c7r4j
10065
10064
2026-04-01T16:45:06Z
Zaynab05
74
/* Càlaa */
10065
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Zing
| other_name =
| native_name =
| nickname =
| settlement_type = LGA
| motto =
| image_skyline = Landscape in Zing, Taraba State, Nigerian.jpg
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Zing
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Davoro K <ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 = 1,030
| area_land_km2 =
| population_as_of = 2006
| population_footnotes =
| population_note =
| population_total = 127,363
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|9|11|7|display=title,inline}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code =
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Zing''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
fe4a65u80df5wceahjj7gpqjtl5g736
10066
10065
2026-04-01T16:47:50Z
Zaynab05
74
10066
wikitext
text/x-wiki
{{Infobox settlement
| official_name = Zing
| other_name =
| native_name =
| nickname =
| settlement_type = LGA
| motto =
| image_skyline = Landscape in Zing, Taraba State, Nigerian.jpg
| imagesize =
| image_caption =
| image_flag =
| flag_size =
| image_seal =
| seal_size =
| image_map =
| mapsize =
| map_caption =
| pushpin_map = Nigeria
| pushpin_label_position =
| pushpin_mapsize =
| pushpin_map_caption =
| subdivision_type = Ƴali
| subdivision_name = {{flag|Nigeria}}
| subdivision_type1 = Jaha
| subdivision_name1 = [[Taraba]]
| subdivision_type2 = Mâiwàa Jàgo
| subdivision_name2 = Zing
| subdivision_type3 =
| subdivision_name3 =
| government_footnotes =
| government_type =
| leader_title = Ciyaman
| leader_name = Hon. Davoro K <ref>{{cite web | url=http://tarabastate.gov.ng/local-govt-chairmen/ | title=Taraba State Local Government Council Chairmen | publisher=Taraba State | location=Nigeria | access-date=11 February 2020 }}</ref>
| established_title =
| established_date =
| area_magnitude =
| unit_pref = Imperial
| area_footnotes =
| area_total_km2 = 1,030
| area_land_km2 =
| population_as_of = 2006
| population_footnotes =
| population_note =
| population_total = 127,363
| population_density_km2 =
| timezone = [[West Africa Time|WAT]]
| utc_offset = +1
| timezone_DST =
| utc_offset_DST =
| coordinates = {{coord|9|0|N|11|7|E|type:adm2nd_region:NG|display=title,inline}}
| mapframe = yes
| mapframe-zoom = 8
| mapframe-wikidata = yes
| mapframe-marker = village
| elevation_footnotes =
| elevation_m =
| elevation_ft =
| postal_code_type =
| postal_code =
| area_code =
| blank_name =
| blank_info =
| website =
| footnotes =
}}
'''Zing''' nanta tòotai ma hukuma ne mà [[Taraba]] à ƴal tà [[Lanjèeriya]].
== Càlaa ==
{{Reflist}}
{{Taraba}}
[[Category:Taraba]]
83kce5m2ward23h6g0brywfb5xpuvcq
Wikipèdiya:Bo àlkī
4
2297
10018
9961
2026-04-01T12:29:01Z
Zahraswaty
193
/* Administrator request */ Reply
10018
wikitext
text/x-wiki
==Administrator request==
Dear community members, I would like to request for admin/sysop rights in order to protect Karai-Karai Wikipedia from vandalism. It comes to my notice that recently there were some edits made not in the Karai-Karai which are clearly acts of vandalism. I am eager to take on more responsibility to help maintain the quality and integrity of the Karai-Karai Wikipedia project as we did when it was in the Incubator. Thank you for your attention. [[Ba wàanò:De-Invincible|De-Invincible]] ([[Màatu mà Ba wàanò:De-Invincible|ɗàfu]]) 07:15, 1 Èpiril 2026 (WAT)
:{{SS}}. I support that the admin rights be granted to [[Ba wàanò:De-Invincible|De-Invincible]] to ensure that Karai-Karai Wikipedia is kept safe by the native contributors. [[Ba wàanò:Zaynab05|Zaynab05]] ([[Màatu mà Ba wàanò:Zaynab05|ɗàfu]]) 08:27, 1 Èpiril 2026 (WAT)
:{{SS}}. I am in supporting of giving admin to the applicant, he would help in maintaining the Karai-karai Wikipedia.[[Ba wàanò:Zahraswaty|Zahraswaty]] ([[Màatu mà Ba wàanò:Zahraswaty|ɗàfu]]) 13:29, 1 Èpiril 2026 (WAT)
ikc2no0cuuyn1dpjs7gp58ccp1axps2
Tampilet:S
10
2386
10019
2026-04-01T13:10:39Z
De-Invincible
36
Created page with "{{#switch: {{#titleparts:{{FULLPAGENAME}}|1|1}}<!-- Root page of full pagename, including namespace but excluding all subpage levels These pages (and all their subpages) don't want an icon for their votes. Please first discuss via Meta:Babel before any changing, if a change isn't happened via such way, feel free to revert that. --> |Proposals for closing projects |Requests for new languages = |#default=File:Symbol strong support vote.svg|15px|link=|{{Langswitch |ar =..."
10019
wikitext
text/x-wiki
{{#switch: {{#titleparts:{{FULLPAGENAME}}|1|1}}<!--
Root page of full pagename, including namespace but excluding all subpage levels
These pages (and all their subpages) don't want an icon for their votes.
Please first discuss via Meta:Babel before any changing, if a change isn't happened via such way, feel free to revert that.
-->
|Proposals for closing projects
|Requests for new languages
=
|#default=[[File:Symbol strong support vote.svg|15px|link=|{{Langswitch
|ar = مع بشدة
|bn = দৃঢ় সমর্থন
|de=Starke Unterstützung
|en=Strong support
|es=Muy a favor
|fi=Vahva kannatus
|fr=Soutien ferme
|gu=દ્રઢ સમર્થન
|he=בעד חזק
|hi=दृढ़ समर्थन
|it=Fortemente favorevole
|ja=強く賛成
|kai=Gàdàɗsàa ngumàni
|ko=강한 찬성
|lij=Fortemente favorévole
|mk=Силна поддршка
|pl=Mocne za
|ru=Решительно за
|sl=Močno za
|sr=Јако за
|sv=Starkt stöd
|tr=Şiddetle destek
|vi=Ủng hộ mạnh
|zh-hans=强烈支持
|zh-hant=強烈支持
}}]] }}'''Support'''<b>{{{1|{{Langswitch
|ar=مع بشدة
|bn=দৃঢ় সমর্থন
|de=Starke Unterstützung
|en=Strong support
|es=Muy a favor
|fi=Vahva kannatus
|fr=Soutien ferme
|gu=દ્રઢ સમર્થન
|he=בעד חזק
|hi=दृढ़ समर्थन
|it=Fortemente favorevole
|ja=強く賛成
|ko=강한 찬성
|lij=Fortemente favorévole
|mk=Силна поддршка
|pl=Mocne za
|ru=Решительно за
|sl=Zelo za
|sr=Јако за
|sv=Starkt stöd
|tr=Şiddetle destek
|vi=Ủng hộ mạnh
|zh-hans=强烈支持
|zh-hant=強烈支持
}}}}}</b><noinclude>{{documentation}}</noinclude>
nfbm1paofkm4xiqs9nchkcrcf55adr4
Kaugama
0
2387
10023
2026-04-01T13:54:13Z
Zahraswaty
193
Created page with "'''Kaugama''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10023
wikitext
text/x-wiki
'''Kaugama''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
ladbgiigtxho3cg41mkbgj5inimjd4g
Kazaure
0
2388
10024
2026-04-01T13:55:51Z
Zahraswaty
193
Created page with "'''Kazaure''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10024
wikitext
text/x-wiki
'''Kazaure''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
29gbix1y6kcrqpd4mxtnzjo4rzcub3s
Kiri Kasama
0
2389
10025
2026-04-01T13:58:03Z
Zahraswaty
193
Created page with "'''Kiri Kasama''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10025
wikitext
text/x-wiki
'''Kiri Kasama''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
gu2wtiywytdlc5z4wufp0w2xazz90bj
Kiyawa
0
2390
10026
2026-04-01T13:58:56Z
Zahraswaty
193
Created page with "'''Kiyawa''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10026
wikitext
text/x-wiki
'''Kiyawa''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
ld4sahcjdl7lxc92zkiuxe4b8l1zxqm
Maigatari
0
2391
10027
2026-04-01T13:59:39Z
Zahraswaty
193
Created page with "'''Maugatari''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10027
wikitext
text/x-wiki
'''Maugatari''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
kc32vj54uqwyi8c8nbrlnejwx46kokg
Malam Madori
0
2392
10028
2026-04-01T14:01:17Z
Zahraswaty
193
Created page with "'''Malam Madori''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10028
wikitext
text/x-wiki
'''Malam Madori''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
al9zn8gl51gwvyrxe9giov9azem29fn
Miga, Lanjèeriya
0
2393
10029
2026-04-01T14:02:51Z
Zahraswaty
193
Created page with "'''Miga''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10029
wikitext
text/x-wiki
'''Miga''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
hwj5ow99t7ncfcnfiz0guawcyzbhcg1
Ringim
0
2394
10030
2026-04-01T14:03:50Z
Zahraswaty
193
Created page with "'''Ringim''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10030
wikitext
text/x-wiki
'''Ringim''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
lzz9ky1saom9rbdt80ha0tzoojnuenu
Roni, Lanjèeriya
0
2395
10031
2026-04-01T14:04:50Z
Zahraswaty
193
Created page with "'''Roni''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10031
wikitext
text/x-wiki
'''Roni''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
eukni5gugdw1847emhrp9emvey1s8df
Tampilet:Infobox settlement/styles.css
10
2396
10074
2026-04-01T18:45:56Z
De-Invincible
36
Created page with "/* Main infobox container */ .ib-settlement { background: #f8f9fa; /* light grey background */ border: 1px solid #ccc; border-radius: 8px; overflow: hidden; } /* Top header (title) */ .ib-settlement .fn.org { background: gold; color: black; font-weight: bold; font-size: 120%; text-align: center; padding: 8px; } /* Section headers (like Government, Area, Population) */ .ib-settlement th { background: gold; color: black;..."
10074
sanitized-css
text/css
/* Main infobox container */
.ib-settlement {
background: #f8f9fa; /* light grey background */
border: 1px solid #ccc;
border-radius: 8px;
overflow: hidden;
}
/* Top header (title) */
.ib-settlement .fn.org {
background: gold;
color: black;
font-weight: bold;
font-size: 120%;
text-align: center;
padding: 8px;
}
/* Section headers (like Government, Area, Population) */
.ib-settlement th {
background: gold;
color: black;
text-align: center;
font-weight: bold;
}
/* Data rows */
.ib-settlement td {
background: #ffffff;
}
/* Light grey separators (like your #D3D3D3 borders) */
.ib-settlement tr {
border-bottom: 6px solid #D3D3D3;
}
/* Sub-label bullets spacing */
.ib-settlement td,
.ib-settlement th {
padding: 4px 6px;
}
5as0386170pxtut660sm10pdclas4yk
Tampilet:Infobox settlement/columns
10
2397
10075
2026-04-01T18:47:00Z
De-Invincible
36
Created page with "<templatestyles src="Infobox settlement/columns/styles.css"/> <div class="ib-settlement-cols"> <div class="ib-settlement-cols-row">{{#if:{{{0|}}} |<!-- if 0 -->{{#if:{{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}} |<!-- if 0 and (1 or 2 or 3 or 4 or 5) --><div class="ib-settlement-cols-cellt"> {{#if:{{{1|}}}|<div>{{{1}}}</div>}} {{#if:{{{2|}}}|<div>{{{2}}}</div>}} {{#if:{{{3|}}}|<div>{{{3}}}</div>}} {{#if:{{{4|}}}|<div>{{{4}}}</div>}} {{#if:{{{5|}}}|<div>{{{5}}}</div>}} </di..."
10075
wikitext
text/x-wiki
<templatestyles src="Infobox settlement/columns/styles.css"/>
<div class="ib-settlement-cols">
<div class="ib-settlement-cols-row">{{#if:{{{0|}}}
|<!-- if 0
-->{{#if:{{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}}
|<!-- if 0 and (1 or 2 or 3 or 4 or 5)
--><div class="ib-settlement-cols-cellt">
{{#if:{{{1|}}}|<div>{{{1}}}</div>}}
{{#if:{{{2|}}}|<div>{{{2}}}</div>}}
{{#if:{{{3|}}}|<div>{{{3}}}</div>}}
{{#if:{{{4|}}}|<div>{{{4}}}</div>}}
{{#if:{{{5|}}}|<div>{{{5}}}</div>}}
</div>
}}<div class="ib-settlement-cols-cellt">{{{0}}}</div>
|<!-- if not 0
-->{{#ifexpr:({{#if:{{{1|}}}|1|0}}+{{#if:{{{2|}}}|1|0}}+{{#if:{{{3|}}}|1|0}}+{{#if:{{{4|}}}|1|0}}) > 2
|<!-- if more than two images
-->{{#if:{{{1|}}}
|<div class="ib-settlement-cols-cell">{{{1}}}</div>{{#if:{{{2|}}}||</div></div><div class="ib-settlement-cols"><!-- TODO: The "3" element case currently produces two div-tables, which is non-optimal, but someone else should figure out how to fix it; 4 and 2 cases output as one "table". --><div class="ib-settlement-cols-row">}}
}}{{#if:{{{2|}}}
|<div class="ib-settlement-cols-cell">{{{2}}}</div>{{#if:{{{1|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}}
}}</div><div class="ib-settlement-cols-row">{{#if:{{{3|}}}
|{{#if:{{{4|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}}<div class="ib-settlement-cols-cell">{{{3}}}</div>
}}{{#if:{{{4|}}}
|{{#if:{{{3|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}}<div class="ib-settlement-cols-cell">{{{4}}}</div>
}}
|<!-- if two or fewer images
-->{{#if:{{{1|}}}|<div class="ib-settlement-cols-cell">{{{1}}}</div>}}<!--
-->{{#if:{{{2|}}}|<div class="ib-settlement-cols-cell">{{{2}}}</div>}}<!--
-->{{#if:{{{3|}}}|<div class="ib-settlement-cols-cell">{{{3}}}</div>}}<!--
-->{{#if:{{{4|}}}|<div class="ib-settlement-cols-cell">{{{4}}}</div>}}
}}
}}</div></div><noinclude>
{{Documentation}}
</noinclude>
4ixpa0vepjb4lkn0xoyrssylcltr6v7
Tampilet:Infobox settlement/columns/styles.css
10
2398
10076
2026-04-01T18:47:27Z
De-Invincible
36
Created page with "/* {{pp|small=y}} */ .ib-settlement-cols { text-align: center; display: table; width: 100%; } .ib-settlement-cols-row { display: table-row; } .ib-settlement-cols-cell { display: table-cell; vertical-align: middle; } .ib-settlement-cols-cellt { display: table-cell; vertical-align: top; }"
10076
sanitized-css
text/css
/* {{pp|small=y}} */
.ib-settlement-cols {
text-align: center;
display: table;
width: 100%;
}
.ib-settlement-cols-row {
display: table-row;
}
.ib-settlement-cols-cell {
display: table-cell;
vertical-align: middle;
}
.ib-settlement-cols-cellt {
display: table-cell;
vertical-align: top;
}
eoq56w19zfw3akcqfxtw079peuodz3k
Tampilet:Fix comma category
10
2399
10077
2026-04-01T18:48:56Z
De-Invincible
36
Created page with "{{#invoke:String|replace|{{{1}}}|%[%[Category:(.-)from (.-) 2,(.-)%]%]|[[Category:%1 from %2 2%3]]|plain=false}}<noinclude>{{Documentation}}</noinclude>"
10077
wikitext
text/x-wiki
{{#invoke:String|replace|{{{1}}}|%[%[Category:(.-)from (.-) 2,(.-)%]%]|[[Category:%1 from %2 2%3]]|plain=false}}<noinclude>{{Documentation}}</noinclude>
7rolevozw7kycknq47tdr4udm0bjnra
Module:Check for clobbered parameters
828
2400
10078
2026-04-01T18:52:13Z
De-Invincible
36
Created page with "local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end function p.check(frame) local args = frame.args local pargs = frame:getParent().args local checknested = isnotempty(args['nested']) local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';' local argpairs = {} for k, v in pairs(args) do if type(k) == 'number' then local plist = mw.text.split(v, delimiter)..."
10078
Scribunto
text/plain
local p = {}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
local checknested = isnotempty(args['nested'])
local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';'
local argpairs = {}
for k, v in pairs(args) do
if type(k) == 'number' then
local plist = mw.text.split(v, delimiter)
local pfound = {}
local count = 0
for ii, vv in ipairs(plist) do
vv = trim(vv)
if checknested and pargs[vv] or isnotempty(pargs[vv]) then
count = count + 1
table.insert(pfound, vv)
end
end
if count > 1 then
table.insert(argpairs, pfound)
end
end
end
local warnmsg = {}
local res = ''
local cat = ''
if args['cat'] and mw.ustring.match(args['cat'],'^[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]:') then
cat = args['cat']
end
local template = args['template'] and ' in ' .. args['template'] or ''
if #argpairs > 0 then
for i, v in ipairs( argpairs ) do
table.insert(
warnmsg,
mw.ustring.format(
'Using more than one of the following parameters%s: <code>%s</code>.',
template,
table.concat(v, '</code>, <code>')
)
)
if cat ~= '' then
res = res .. '[[' .. cat .. '|' .. (v[1] == '' and ' ' or '') .. v[1] .. ']]'
end
end
end
if #warnmsg > 0 then
res = require('Module:If preview')._warning({
table.concat(warnmsg, '<br>')
}) .. res
end
return res
end
return p
59n770hna40q9pw4oa0dsp86euaks0u
Module:Location map/data/USA
828
2401
10080
2026-04-01T19:01:22Z
De-Invincible
36
Created page with "return { name = 'the United States', x = '50.0 + 124.03149777329222 * ((1.9694462586094064-($1 * pi / 180)) * sin(0.6010514667026994 * ($2 + 96) * pi / 180))', y = '50.0 + 1.6155950752393982 * 124.03149777329222 * ( 0.02613325650382181 - (1.3236744353715044 - (1.9694462586094064 - ($1 * pi / 180)) * cos(0.6010514667026994 * ($2 + 96) * pi / 180)))', image = 'Usa edcp location map.svg', image1 = 'Usa edcp relief location map.png' }"
10080
Scribunto
text/plain
return {
name = 'the United States',
x = '50.0 + 124.03149777329222 * ((1.9694462586094064-($1 * pi / 180)) * sin(0.6010514667026994 * ($2 + 96) * pi / 180))',
y = '50.0 + 1.6155950752393982 * 124.03149777329222 * ( 0.02613325650382181 - (1.3236744353715044 - (1.9694462586094064 - ($1 * pi / 180)) * cos(0.6010514667026994 * ($2 + 96) * pi / 180)))',
image = 'Usa edcp location map.svg',
image1 = 'Usa edcp relief location map.png'
}
omeidj06s1rkgvgxe87f9nu423e3wd2
Module:Uses Wikidata
828
2402
10081
2026-04-01T19:02:45Z
De-Invincible
36
Created page with "local p = {} function p.usesProperty(frame) local args = frame.getParent(frame).args or nil if mw.text.trim(args[1] or '') == '' then args = frame.args end local result = '<ul>' local ii = 1 while true do local p_num = mw.text.trim(args[ii] or '') if p_num ~= '' then local label = mw.wikibase.getLabel(p_num) or "NO LABEL" result = result .. "<li>[[Fail:Disc Plain blue dark.svg|middle|4px|link=|alt=]] <b><i>[[d:Property talk:" .. p_num .. "|" .. label ...."
10081
Scribunto
text/plain
local p = {}
function p.usesProperty(frame)
local args = frame.getParent(frame).args or nil
if mw.text.trim(args[1] or '') == '' then
args = frame.args
end
local result = '<ul>'
local ii = 1
while true do
local p_num = mw.text.trim(args[ii] or '')
if p_num ~= '' then
local label = mw.wikibase.getLabel(p_num) or "NO LABEL"
result = result .. "<li>[[Fail:Disc Plain blue dark.svg|middle|4px|link=|alt=]] <b><i>[[d:Property talk:" .. p_num .. "|" .. label .. " (" .. string.upper(p_num) .. ")]]</i></b> (see <span class='plainlinks'>[https://query.wikidata.org/embed.html#SELECT%20%3FWikidata_item_%20%3FWikidata_item_Label%20%3Fvalue%20%3FvalueLabel%20%3FEnglish_Wikipedia_article%20%23Show%20data%20in%20this%20order%0A%7B%0A%09%3FWikidata_item_%20wdt%3A" .. p_num .. "%20%3Fvalue%20.%20%23Collecting%20all%20items%20which%20have%20" .. p_num .. "%20data%2C%20from%20whole%20Wikidata%20item%20pages%0A%09OPTIONAL%20%7B%3FEnglish_Wikipedia_article%20schema%3Aabout%20%3FWikidata_item_%3B%20schema%3AisPartOf%20%3Chttps%3A%2F%2Fen.wikipedia.org%2F%3E%20.%7D%20%23If%20collected%20item%20has%20link%20to%20English%20Wikipedia%2C%20show%20that%0A%09SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%22%20%20%7D%20%23Show%20label%20in%20this%20language.%20%22en%22%20is%20English.%20%20%20%0A%7D%0ALIMIT%201000 uses]</span>)</li>"
ii = ii + 1
else break
end
end
result = result.."</ul>"
return result
end
function p.tuProperty(frame)
local parent = frame.getParent(frame)
local result = '<ul>'
local ii = 1
while true do
local p_num = mw.text.trim(parent.args[ii] or '')
if p_num ~= '' then
local label = mw.wikibase.getLabel(p_num) or "NO LABEL"
result = result .. "<li><span style='font-size:90%;line-height:1;'>●</span> <b>[[d:Property:" .. p_num .. "|" .. label .. "]]</b> <span style='font-size:90%;'>([[d:Property talk:" .. string.upper(p_num) .. "|" .. p_num .. "]])</span></li>"
ii = ii + 1
else break
end
end
result = result.."</ul>"
return result
end
return p
ovf3i3uf85435znzowmu468uoxtsw3x
Module:ISO 3166
828
2403
10082
2026-04-01T19:05:36Z
De-Invincible
36
Created page with "-- to enable us to replicate the current functioning of Country extract, we need to deal with: -- 2 {{<name>}} DONE! -- 3 [[<name>]] DONE! -- 4 [[<name>|<junk>]] DONE! -- 5 [[Fail:flag of <country>.[svg|gif|png|jpg]|\d+px]] DONE! local p = {} local getArgs = require("Module:Arguments").getArgs local data = mw.loadData("Module:ISO 3166/data/National") --[[----------F I N D N A M E----------]]-- -- Finds the name in the database local function findname(code,cda..."
10082
Scribunto
text/plain
-- to enable us to replicate the current functioning of Country extract, we need to deal with:
-- 2 {{<name>}} DONE!
-- 3 [[<name>]] DONE!
-- 4 [[<name>|<junk>]] DONE!
-- 5 [[Fail:flag of <country>.[svg|gif|png|jpg]|\d+px]] DONE!
local p = {}
local getArgs = require("Module:Arguments").getArgs
local data = mw.loadData("Module:ISO 3166/data/National")
--[[----------F I N D N A M E----------]]-- -- Finds the name in the database
local function findname(code,cdata,qry)
local sqry = p.strip(qry)
if cdata["name"] and sqry==p.strip(cdata["name"])
or cdata["isoname"] and sqry==p.strip(cdata["isoname"])
or not cdata["nocode"] and sqry==code
or sqry==cdata["alpha3"] or sqry==cdata["numeric"]
then
return true
end
for _,tname in pairs(cdata["isonames"] or {}) do
if sqry==p.strip(tname) then
return true
end
end
for _,tname in pairs(cdata["altnames"] or {}) do
if sqry==p.strip(tname) then
return true
end
end
return false
end
--[[----------I S O N A M E----------]]-- -- Find the ISO name of a country/region
local function isoname(data,code,lang)
if data[code]["isonames"] then
local name = data[code]["isodisplaynames"] and data[code]["isodisplaynames"][lang]
or data[code]["isonames"][lang]
or data[code]["isodisplaynames"] and data[code]["isodisplaynames"][data[code]["defaultlang"] or data["defaultlang"]]
or data[code]["isonames"][data[code]["defaultlang"] or data["defaultlang"]]
or data[code]["isodisplaynames"] and data[code]["isodisplaynames"]["en"]
or data[code]["isonames"]["en"]
if name then return name end
for _,iname in pairs(data[code]["isonames"]) do return iname end
return data[code]["isodisplayname"] or data[code]["isoname"]
else
return data[code]["isodisplayname"] or data[code]["isoname"]
end
end
--[[----------S T R I P----------]]-- -- Removes junk from the input
function p.strip(text)
local accents = {["À"]="A",["Á"]="A",["Â"]="A",["Ã"]="A", -- accent list
["Ä"]="A",["Å"]="A",["Ç"]="C",["È"]="E",["É"]="E",
["Ê"]="E",["Ë"]="E",["Ì"]="I",["Í"]="I",["Î"]="I",
["Ï"]="I",["Ñ"]="N",["Ò"]="O",["Ó"]="O",["Ô"]="O",
["Õ"]="O",["Ö"]="O",["Ø"]="O",["Ù"]="U",["Ú"]="U",
["Û"]="U",["Ü"]="U",["Ý"]="Y"
}
local remove = {"NATION OF","COUNTRY OF","TERRITORY OF", -- text to be removed list
"FLAG OF","FLAG","KINGDOM OF","STATE OF"," STATE ",
"PROVINCE OF","PROVINCE","TERRITORY"
}
local patterns = {[".+:"]="",["|.+"]="",["%(.-%)"]="", -- patterns to follow (order may matter)
["%..*"]="",["^THE "]="",["%_"]=" ",["%-"]=" ",
["%d%d?%d?PX"]="",
}
text = mw.ustring.upper(text) -- Case insensitivity
text = mw.ustring.gsub(text,"[À-Ý]",accents) -- Deaccent
for pattern,value in pairs(patterns) do -- Follow patterns
text = mw.ustring.gsub(text,pattern,value)
end
for _,words in pairs(remove) do -- Remove unneeded words
text = mw.ustring.gsub(text,words,"")
end
text = mw.ustring.gsub(text,"%W","") -- Remove non alpha-numeric
return text
end
--[[----------P . C A L L S T R I P ---------]]-- -- Calls P.strip but using Module:Arguments
function p.callstrip(frame)
local args = getArgs(frame)
return p.strip(args[1]) or ""
end
--[[----------P . L U A C O D E---------]]-- -- Makes the ISO code of a country
function p.luacode(args)
if string.find(args[1] or '',"%-") then
args[1], args[2] = string.match(args[1] or '',"^([^%-]*)%-(.*)$")
end
if args[1] then args[1] = p.strip(args[1]) end
if args[2] then args[2] = p.strip(args[2]) end
if args["codetype"]=="3" then
args["codetype"]="alpha3"
end
local eot = args.error or ""
local catnocountry = (args.nocat and args.nocat == 'true') and ''
or '[[Kategori:Wikipedia page with obscure country]]'
local catnosubdivision = (args.nocat and args.nocat == 'true') and ''
or '[[Kategori:Wikipedia page with obscure subdivision]]'
if not args[1] then
if mw.title.getCurrentTitle().namespace ~= 0 then catnocountry = '' end
return catnocountry, '<span style="font-size:100%" class="error">"No parameter for the country given"</span>'
end
if not args[2] then --3166-1 code
for alpha2,cdata in pairs(data) do
if findname(alpha2,cdata,args[1]) then
if args["codetype"]=="numeric" or args["codetype"]=="alpha3" then
return cdata[args["codetype"]]
else
return alpha2
end
end
end
if mw.title.getCurrentTitle().namespace ~= 0 then catnocountry = '' end
return catnocountry
else --3166-2 code
for alpha2,cdata in pairs(data) do
if findname(alpha2,cdata,args[1]) then
if mw.ustring.match(alpha2,"GB") then -- For England, Wales etc.
alpha2 = "GB"
end
local sdata = mw.loadData("Module:ISO 3166/data/"..alpha2)
local empty = true
for scode,scdata in pairs(sdata) do
if type(scdata)=="table" then
empty = false
if findname(scode,scdata,args[2]) then
return alpha2.."-"..scode
end
end
end
if mw.title.getCurrentTitle().namespace ~= 0 then catnosubdivision = '' end
return catnosubdivision
end
end
if mw.title.getCurrentTitle().namespace ~= 0 then catnocountry = '' end
return catnocountry
end
end
--[[----------P . C O D E---------]]-- -- Calls P.Luacode but using Module:Arguments
function p.code(frame)
return p.luacode(getArgs(frame)) or ""
end
--[[----------P . N U M E R I C---------]]-- -- Calls P.Luacode but using Module:Arguments and setting it to output a numeric value
function p.numeric(frame)
local args = getArgs(frame)
args["codetype"]="numeric"
return p.luacode(args) or ""
end
--[[----------P . L U A N A M E---------]]-- -- Makes the ISO/common name of a country
function p.luaname(args)
local code1 = p.luacode(args)
local code2 = ''
if string.find(code1,"%-") then
code1, code2 = string.match(code1,"^([^%-]*)%-(.*)$")
end
if string.find(code1,"^%u%u$") then
if code2=="" then --3166-1 alpha-2 code
if data[code1] then
return (args.isoname or args.lang) and isoname(data,code1,args.lang)
or (data[code1]["displayname"] or data[code1]["name"])
else
return '[[Kategori:Wikipedia page with obscure country]]'
end
else --3166-2 code
local sdata
if data[code1] then
sdata = mw.loadData("Module:ISO 3166/data/"..code1)
else
return '[[Kategori:Wikipedia page with obscure country]]'
end
if sdata[code2] then
return (args.isoname or args.lang) and isoname(sdata,code2,args.lang)
or (sdata[code2]["displayname"] or sdata[code2]["name"])
else
return '[[Kategori:Wikipedia page with obscure country]]'
end
end
end
end
--[[----------P . N A M E---------]]-- -- Calls P.Luaname but using Module:Arguments
function p.name(frame)
return p.luaname(getArgs(frame)) or ""
end
--[[----------P . G E O C O O R D I N S E R T---------]]-- -- Wrapper for Module:Coordinates.coordinsert
function p.geocoordinsert(frame)
-- {{#invoke:ISO 3166|geocoordinsert|{{coord|...}}
-- |country=..|subdivision1=...|subdivision2=...
-- |type=...|scale=...|dim=...|source=...|globe=...
-- }}
local args = frame.args
local subdivisionqueried = false
local catnocountry = (args.nocat and args.nocat == 'true') and ''
or '[[Kategori:Wikipedia page with obscure country]]'
local catnosubdivision = (args.nocat and args.nocat == 'true') and ''
or '[[Kategori:Wikipedia page with obscure subdivision]]' or ''
local tracking = ''
local targs = {}
targs[1] = args[1] or ''
for i, v in pairs(args) do
if i == 'country' and not mw.ustring.find(targs[1], 'region:') then
local country = v
local k, region = 1, ''
-- look for a valid subdivision
while region == '' and k < 3 do
local subdivision = args['subdivision' .. k] or ''
if subdivision ~= '' then
region = p.luacode({country, subdivision, nocat = 'true'})
subdivisionqueried = true
end
k = k + 1
end
-- subdivision lookup failed or never attempted, try country only
if region == '' then
region = p.luacode({country, nocat = 'true'})
if mw.title.getCurrentTitle().namespace ~= 0 then catnocountry, catnosubdivision = '', '' end
if region == '' then
tracking = tracking .. catnocountry
elseif subdivisionqueried == true then
tracking = tracking .. catnosubdivision
end
end
-- something worked, add it to the targs
if region ~= '' then
targs[#targs + 1] = 'region:' .. region
end
elseif i == 'type' or i == 'scale' or i == 'dim'
or i == 'source' or i == 'globe' then
targs[#targs + 1] = i .. ':' .. v
end
end
-- call Module:Coordinates.coordinsert if there is something to insert
if #targs > 1 then
local coordinsert = require('Module:Coordinates').coordinsert
return coordinsert({args = targs}) .. tracking
end
-- otherwise, just return the coordinates
return targs[1] .. tracking
end
return p
px7pqicz6ojo71p0ejeh1jegwq50upp
Module:ISO 3166/data/National
828
2404
10083
2026-04-01T19:06:23Z
De-Invincible
36
Created page with "return { ["AD"] = {alpha3="AND",numeric="020",name="Andorra"}, ["AE"] = {alpha3="ARE",numeric="784",name="United Arab Emirates",altnames={"UAE"}}, ["AF"] = {alpha3="AFG",numeric="004",name="Afghanistan"}, ["AG"] = {alpha3="ATG",numeric="028",name="Antigua and Barbuda"}, ["AI"] = {alpha3="AIA",numeric="660",name="Anguilla"}, ["AL"] = {alpha3="ALB",numeric="008",name="Albania"}, ["AM"] = {alpha3="ARM",numeric="051",name="Armenia"}, ["AO"] = {alpha3="AGO",nu..."
10083
Scribunto
text/plain
return {
["AD"] = {alpha3="AND",numeric="020",name="Andorra"},
["AE"] = {alpha3="ARE",numeric="784",name="United Arab Emirates",altnames={"UAE"}},
["AF"] = {alpha3="AFG",numeric="004",name="Afghanistan"},
["AG"] = {alpha3="ATG",numeric="028",name="Antigua and Barbuda"},
["AI"] = {alpha3="AIA",numeric="660",name="Anguilla"},
["AL"] = {alpha3="ALB",numeric="008",name="Albania"},
["AM"] = {alpha3="ARM",numeric="051",name="Armenia"},
["AO"] = {alpha3="AGO",numeric="024",name="Angola"},
["AQ"] = {alpha3="ATA",numeric="010",name="Antarctica"},
["AR"] = {alpha3="ARG",numeric="032",name="Argentina"},
["AS"] = {alpha3="ASM",numeric="016",name="American Samoa"},
["AT"] = {alpha3="AUT",numeric="040",name="Austria"},
["AU"] = {alpha3="AUS",numeric="036",name="Australia"},
["AW"] = {alpha3="ABW",numeric="533",name="Aruba"},
["AX"] = {alpha3="ALA",numeric="248",name="Åland Islands",altnames={"Aland Islands","Åland","Aland"}},
["AZ"] = {alpha3="AZE",numeric="031",name="Azerbaijan"},
["BA"] = {alpha3="BIH",numeric="070",name="Bosnia and Herzegovina",altnames={"Bosnia"}},
["BB"] = {alpha3="BRB",numeric="052",name="Barbados"},
["BD"] = {alpha3="BGD",numeric="050",name="Bangladesh"},
["BE"] = {alpha3="BEL",numeric="056",name="Belgium"},
["BF"] = {alpha3="BFA",numeric="854",name="Burkina Faso"},
["BG"] = {alpha3="BGR",numeric="100",name="Bulgaria"},
["BH"] = {alpha3="BHR",numeric="048",name="Bahrain"},
["BI"] = {alpha3="BDI",numeric="108",name="Burundi"},
["BJ"] = {alpha3="BEN",numeric="204",name="Benin"},
["BL"] = {alpha3="BLM",numeric="652",name="Saint Barthélemy",altnames={"St Barthelemy"}},
["BM"] = {alpha3="BMU",numeric="060",name="Bermuda"},
["BN"] = {alpha3="BRN",numeric="096",name="Brunei",isoname="Brunei Darussalam"},
["BO"] = {alpha3="BOL",numeric="068",name="Bolivia",isoname="Bolivia (Plurinational State of)"},
["BQ"] = {alpha3="BES",numeric="535",name="Caribbean Netherlands",isoname="Bonaire, Sint Eustatius and Saba"},
["BR"] = {alpha3="BRA",numeric="076",name="Brazil"},
["BS"] = {alpha3="BHS",numeric="044",name="Bahamas"},
["BT"] = {alpha3="BTN",numeric="064",name="Bhutan"},
["BV"] = {alpha3="BVT",numeric="074",name="Bouvet Island"},
["BW"] = {alpha3="BWA",numeric="072",name="Botswana"},
["BY"] = {alpha3="BLR",numeric="112",name="Belarus"},
["BZ"] = {alpha3="BLZ",numeric="084",name="Belize"},
["CA"] = {alpha3="CAN",numeric="124",name="Canada"},
["CC"] = {alpha3="CCK",numeric="166",name="Cocos (Keeling) Islands",altnames={"Cocos Islands","Keeling Islands"}},
["CD"] = {alpha3="COD",numeric="180",name="Democratic Republic of the Congo",isoname="Congo, Democratic Republic of the",altnames={"Congo-Kinshasa","DRC","DR Congo"}},
["CF"] = {alpha3="CAF",numeric="140",name="Central African Republic",altnames={"CAR"}},
["CG"] = {alpha3="COG",numeric="178",name="Republic of the Congo",isoname="Congo",altnames={"Congo-Brazzaville"}},
["CH"] = {alpha3="CHE",numeric="756",name="Switzerland"},
["CI"] = {alpha3="CIV",numeric="384",name="Côte d'Ivoire",altnames={"Ivory Coast"}},
["CK"] = {alpha3="COK",numeric="184",name="Cook Islands"},
["CL"] = {alpha3="CHL",numeric="152",name="Chile"},
["CM"] = {alpha3="CMR",numeric="120",name="Cameroon"},
["CN"] = {alpha3="CHN",numeric="156",name="China",altnames={"People's Republic of China","PRC"}},
["CO"] = {alpha3="COL",numeric="170",name="Colombia"},
["CR"] = {alpha3="CRI",numeric="188",name="Costa Rica"},
["CU"] = {alpha3="CUB",numeric="192",name="Cuba"},
["CV"] = {alpha3="CPV",numeric="132",name="Cabo Verde",altnames={"Cape Verde"}},
["CW"] = {alpha3="CUW",numeric="531",name="Curaçao",altnames={"Curacao"}},
["CX"] = {alpha3="CXR",numeric="162",name="Christmas Island"},
["CY"] = {alpha3="CYP",numeric="196",name="Cyprus"},
["CZ"] = {alpha3="CZE",numeric="203",name="Czech Republic",isoname="Czechia"},
["DE"] = {alpha3="DEU",numeric="276",name="Germany"},
["DJ"] = {alpha3="DJI",numeric="262",name="Djibouti"},
["DK"] = {alpha3="DNK",numeric="208",name="Denmark"},
["DM"] = {alpha3="DMA",numeric="212",name="Dominica"},
["DO"] = {alpha3="DOM",numeric="214",name="Dominican Republic"},
["DZ"] = {alpha3="DZA",numeric="012",name="Algeria"},
["EC"] = {alpha3="ECU",numeric="218",name="Ecuador"},
["EE"] = {alpha3="EST",numeric="233",name="Estonia"},
["EG"] = {alpha3="EGY",numeric="818",name="Egypt"},
["EH"] = {alpha3="ESH",numeric="732",name="Western Sahara"},
["ER"] = {alpha3="ERI",numeric="232",name="Eritrea"},
["ES"] = {alpha3="ESP",numeric="724",name="Spain"},
["ET"] = {alpha3="ETH",numeric="231",name="Ethiopia"},
["FI"] = {alpha3="FIN",numeric="246",name="Finland"},
["FJ"] = {alpha3="FJI",numeric="242",name="Fiji"},
["FK"] = {alpha3="FLK",numeric="238",name="Falkland Islands",isoname="Falkland Islands (Malvinas)",altnames={"Falklands","Islas Malvinas","Malvinas","Malvinas Islands"}},
["FM"] = {alpha3="FSM",numeric="583",name="Federated States of Micronesia",isoname="Micronesia (Federated States of)",altnames={"Micronesia"}},
["FO"] = {alpha3="FRO",numeric="234",name="Faroe Islands",altnames={"Faroer","Faeroer"}},
["FR"] = {alpha3="FRA",numeric="250",name="France"},
["GA"] = {alpha3="GAB",numeric="266",name="Gabon"},
["GB"] = {alpha3="GBR",numeric="826",name="United Kingdom",isoname="United Kingdom of Great Britain and Northern Ireland",altnames={"UK","Great Britain"}},
["GB-ENG"] = {alpha3="ENG",numeric="000",name="England"}, --Considered to be a country
["GB-NIR"] = {alpha3="NIR",numeric="000",name="Northern Ireland"}, --Considered to be a country
["GB-SCT"] = {alpha3="SCT",numeric="000",name="Scotland"}, --Considered to be a country
["GB-WLS"] = {alpha3="WLS",numeric="000",name="Wales"}, --Considered to be a country
["GB-EAW"] = {alpha3="EAW",numeric="000",name="England and Wales"}, --Considered to be a country
["GD"] = {alpha3="GRD",numeric="308",name="Grenada"},
["GE"] = {alpha3="GEO",numeric="268",name="Georgia"},
["GF"] = {alpha3="GUF",numeric="254",name="French Guiana"},
["GG"] = {alpha3="GGY",numeric="831",name="Guernsey"},
["GH"] = {alpha3="GHA",numeric="288",name="Ghana"},
["GI"] = {alpha3="GIB",numeric="292",name="Gibraltar"},
["GL"] = {alpha3="GRL",numeric="304",name="Greenland"},
["GM"] = {alpha3="GMB",numeric="270",name="Gambia"},
["GN"] = {alpha3="GIN",numeric="324",name="Guinea"},
["GP"] = {alpha3="GLP",numeric="312",name="Guadeloupe"},
["GQ"] = {alpha3="GNQ",numeric="226",name="Equatorial Guinea"},
["GR"] = {alpha3="GRC",numeric="300",name="Greece"},
["GS"] = {alpha3="SGS",numeric="239",name="South Georgia and the South Sandwich Islands"},
["GT"] = {alpha3="GTM",numeric="320",name="Guatemala"},
["GU"] = {alpha3="GUM",numeric="316",name="Guam"},
["GW"] = {alpha3="GNB",numeric="624",name="Guinea-Bissau"},
["GY"] = {alpha3="GUY",numeric="328",name="Guyana"},
["HK"] = {alpha3="HKG",numeric="344",name="Hong Kong",altnames={"Hong Kong SAR","HKSAR"}},
["HM"] = {alpha3="HMD",numeric="334",name="Heard Island and McDonald Islands",altnames={"Heard and McDonald Islands"}},
["HN"] = {alpha3="HND",numeric="340",name="Honduras"},
["HR"] = {alpha3="HRV",numeric="191",name="Croatia"},
["HT"] = {alpha3="HTI",numeric="332",name="Haiti"},
["HU"] = {alpha3="HUN",numeric="348",name="Hungary"},
["ID"] = {alpha3="IDN",numeric="360",name="Indonesia"},
["IE"] = {alpha3="IRL",numeric="372",name="Ireland",altnames={"Republic of Ireland"}},
["IL"] = {alpha3="ISR",numeric="376",name="Israel"},
["IM"] = {alpha3="IMN",numeric="833",name="Isle of Man"},
["IN"] = {alpha3="IND",numeric="356",name="India"},
["IO"] = {alpha3="IOT",numeric="086",name="British Indian Ocean Territory"},
["IQ"] = {alpha3="IRQ",numeric="368",name="Iraq"},
["IR"] = {alpha3="IRN",numeric="364",name="Iran",isoname="Iran (Islamic Republic of)"},
["IS"] = {alpha3="ISL",numeric="352",name="Iceland"},
["IT"] = {alpha3="ITA",numeric="380",name="Italy"},
["JE"] = {alpha3="JEY",numeric="832",name="Jersey"},
["JM"] = {alpha3="JAM",numeric="388",name="Jamaica"},
["JO"] = {alpha3="JOR",numeric="400",name="Jordan"},
["JP"] = {alpha3="JPN",numeric="392",name="Japan"},
["KE"] = {alpha3="KEN",numeric="404",name="Kenya"},
["KG"] = {alpha3="KGZ",numeric="417",name="Kyrgyzstan"},
["KH"] = {alpha3="KHM",numeric="116",name="Cambodia"},
["KI"] = {alpha3="KIR",numeric="296",name="Kiribati"},
["KM"] = {alpha3="COM",numeric="174",name="Comoros"},
["KN"] = {alpha3="KNA",numeric="659",name="Saint Kitts and Nevis",altnames={"St Kitts and Nevis"}},
["KP"] = {alpha3="PRK",numeric="408",name="North Korea",isoname="Korea (Democratic People's Republic of)",altnames={"Democratic People's Republic of Korea"}},
["KR"] = {alpha3="KOR",numeric="410",name="South Korea",isoname="Korea, Republic of",altnames={"Republic of Korea"}},
["KW"] = {alpha3="KWT",numeric="414",name="Kuwait"},
["KY"] = {alpha3="CYM",numeric="136",name="Cayman Islands"},
["KZ"] = {alpha3="KAZ",numeric="398",name="Kazakhstan"},
["LA"] = {alpha3="LAO",numeric="418",name="Laos",isoname="Lao People's Democratic Republic"},
["LB"] = {alpha3="LBN",numeric="422",name="Lebanon"},
["LC"] = {alpha3="LCA",numeric="662",name="Saint Lucia",altnames={"St Lucia"}},
["LI"] = {alpha3="LIE",numeric="438",name="Liechtenstein"},
["LK"] = {alpha3="LKA",numeric="144",name="Sri Lanka"},
["LR"] = {alpha3="LBR",numeric="430",name="Liberia"},
["LS"] = {alpha3="LSO",numeric="426",name="Lesotho"},
["LT"] = {alpha3="LTU",numeric="440",name="Lithuania"},
["LU"] = {alpha3="LUX",numeric="442",name="Luxembourg"},
["LV"] = {alpha3="LVA",numeric="428",name="Latvia"},
["LY"] = {alpha3="LBY",numeric="434",name="Libya"},
["MA"] = {alpha3="MAR",numeric="504",name="Morocco"},
["MC"] = {alpha3="MCO",numeric="492",name="Monaco"},
["MD"] = {alpha3="MDA",numeric="498",name="Moldova",isoname="Moldova, Republic of"},
["ME"] = {alpha3="MNE",numeric="499",name="Montenegro"},
["MF"] = {alpha3="MAF",numeric="663",name="Saint-Martin",isoname="Saint Martin (French part)",altnames={"St Martin","St Martin (French part)","Collectivity of Saint Martin","Collectivity of St Martin"}},
["MG"] = {alpha3="MDG",numeric="450",name="Madagascar"},
["MH"] = {alpha3="MHL",numeric="584",name="Marshall Islands"},
["MK"] = {alpha3="MKD",numeric="807",name="North Macedonia",altnames={"Republic of North Macedonia","Macedonia","Republic of Macedonia","Macedonia, the former Yugoslav Republic of"}},
["ML"] = {alpha3="MLI",numeric="466",name="Mali"},
["MM"] = {alpha3="MMR",numeric="104",name="Myanmar",altnames={"Burma"}},
["MN"] = {alpha3="MNG",numeric="496",name="Mongolia"},
["MO"] = {alpha3="MAC",numeric="446",name="Macau",isoname="Macao",altnames={"Macau SAR","Macao SAR"}},
["MP"] = {alpha3="MNP",numeric="580",name="Northern Mariana Islands"},
["MQ"] = {alpha3="MTQ",numeric="474",name="Martinique"},
["MR"] = {alpha3="MRT",numeric="478",name="Mauritania"},
["MS"] = {alpha3="MSR",numeric="500",name="Montserrat"},
["MT"] = {alpha3="MLT",numeric="470",name="Malta"},
["MU"] = {alpha3="MUS",numeric="480",name="Mauritius"},
["MV"] = {alpha3="MDV",numeric="462",name="Maldives"},
["MW"] = {alpha3="MWI",numeric="454",name="Malawi"},
["MX"] = {alpha3="MEX",numeric="484",name="Mexico"},
["MY"] = {alpha3="MYS",numeric="458",name="Malaysia"},
["MZ"] = {alpha3="MOZ",numeric="508",name="Mozambique"},
["NA"] = {alpha3="NAM",numeric="516",name="Namibia"},
["NC"] = {alpha3="NCL",numeric="540",name="New Caledonia"},
["NE"] = {alpha3="NER",numeric="562",name="Niger"},
["NF"] = {alpha3="NFK",numeric="574",name="Norfolk Island"},
["NG"] = {alpha3="NGA",numeric="566",name="Nigeria"},
["NI"] = {alpha3="NIC",numeric="558",name="Nicaragua"},
["NL"] = {alpha3="NLD",numeric="528",name="Netherlands"},
["NO"] = {alpha3="NOR",numeric="578",name="Norway"},
["NP"] = {alpha3="NPL",numeric="524",name="Nepal"},
["NR"] = {alpha3="NRU",numeric="520",name="Nauru"},
["NU"] = {alpha3="NIU",numeric="570",name="Niue"},
["NZ"] = {alpha3="NZL",numeric="554",name="New Zealand",altnames={"Aotearoa"}},
["OM"] = {alpha3="OMN",numeric="512",name="Oman"},
["PA"] = {alpha3="PAN",numeric="591",name="Panama"},
["PE"] = {alpha3="PER",numeric="604",name="Peru"},
["PF"] = {alpha3="PYF",numeric="258",name="French Polynesia"},
["PG"] = {alpha3="PNG",numeric="598",name="Papua New Guinea"},
["PH"] = {alpha3="PHL",numeric="608",name="Philippines"},
["PK"] = {alpha3="PAK",numeric="586",name="Pakistan"},
["PL"] = {alpha3="POL",numeric="616",name="Poland"},
["PM"] = {alpha3="SPM",numeric="666",name="Saint Pierre and Miquelon",altnames={"St Pierre and Miquelon"}},
["PN"] = {alpha3="PCN",numeric="612",name="Pitcairn"},
["PR"] = {alpha3="PRI",numeric="630",name="Puerto Rico"},
["PS"] = {alpha3="PSE",numeric="275",name="Palestine",isoname="Palestine, State of",altnames={"State of Palestine"}},
["PT"] = {alpha3="PRT",numeric="620",name="Portugal"},
["PW"] = {alpha3="PLW",numeric="585",name="Palau"},
["PY"] = {alpha3="PRY",numeric="600",name="Paraguay"},
["QA"] = {alpha3="QAT",numeric="634",name="Qatar"},
["RE"] = {alpha3="REU",numeric="638",name="Réunion"},
["RO"] = {alpha3="ROU",numeric="642",name="Romania"},
["RS"] = {alpha3="SRB",numeric="688",name="Serbia"},
["RU"] = {alpha3="RUS",numeric="643",name="Russia",isoname="Russian Federation"},
["RW"] = {alpha3="RWA",numeric="646",name="Rwanda"},
["SA"] = {alpha3="SAU",numeric="682",name="Saudi Arabia"},
["SB"] = {alpha3="SLB",numeric="090",name="Solomon Islands"},
["SC"] = {alpha3="SYC",numeric="690",name="Seychelles"},
["SD"] = {alpha3="SDN",numeric="729",name="Sudan"},
["SE"] = {alpha3="SWE",numeric="752",name="Sweden"},
["SG"] = {alpha3="SGP",numeric="702",name="Singapore"},
["SH"] = {alpha3="SHN",numeric="654",name="Saint Helena, Ascension and Tristan da Cunha"},
["SI"] = {alpha3="SVN",numeric="705",name="Slovenia"},
["SJ"] = {alpha3="SJM",numeric="744",name="Svalbard and Jan Mayen"},
["SK"] = {alpha3="SVK",numeric="703",name="Slovakia"},
["SL"] = {alpha3="SLE",numeric="694",name="Sierra Leone"},
["SM"] = {alpha3="SMR",numeric="674",name="San Marino"},
["SN"] = {alpha3="SEN",numeric="686",name="Senegal"},
["SO"] = {alpha3="SOM",numeric="706",name="Somalia"},
["SR"] = {alpha3="SUR",numeric="740",name="Suriname"},
["SS"] = {alpha3="SSD",numeric="728",name="South Sudan"},
["ST"] = {alpha3="STP",numeric="678",name="São Tomé and Príncipe",isoname="Sao Tome and Principe",altnames={"Democratic Republic of Sao Tome and Principe"}},
["SV"] = {alpha3="SLV",numeric="222",name="El Salvador"},
["SX"] = {alpha3="SXM",numeric="534",name="Sint Maarten",isoname="Sint Maarten (Dutch part)",altnames={"St Maarten","Saint Martin (Dutch part)","St Martin (Dutch part)"}},
["SY"] = {alpha3="SYR",numeric="760",name="Syria",isoname="Syrian Arab Republic"},
["SZ"] = {alpha3="SWZ",numeric="748",name="Eswatini",altnames={"Swaziland"}},
["TC"] = {alpha3="TCA",numeric="796",name="Turks and Caicos Islands"},
["TD"] = {alpha3="TCD",numeric="148",name="Chad"},
["TF"] = {alpha3="ATF",numeric="260",name="French Southern and Antarctic Lands",isoname="French Southern Territories"},
["TG"] = {alpha3="TGO",numeric="768",name="Togo"},
["TH"] = {alpha3="THA",numeric="764",name="Thailand"},
["TJ"] = {alpha3="TJK",numeric="762",name="Tajikistan"},
["TK"] = {alpha3="TKL",numeric="772",name="Tokelau"},
["TL"] = {alpha3="TLS",numeric="626",name="Timor-Leste",altnames={"East Timor"}},
["TM"] = {alpha3="TKM",numeric="795",name="Turkmenistan"},
["TN"] = {alpha3="TUN",numeric="788",name="Tunisia"},
["TO"] = {alpha3="TON",numeric="776",name="Tonga"},
["TR"] = {alpha3="TUR",numeric="792",name="Turkey",isoname="Türkiye"},
["TT"] = {alpha3="TTO",numeric="780",name="Trinidad and Tobago"},
["TV"] = {alpha3="TUV",numeric="798",name="Tuvalu"},
["TW"] = {alpha3="TWN",numeric="158",name="Taiwan",isoname="Taiwan, Province of China",altnames={"Republic of China"}},
["TZ"] = {alpha3="TZA",numeric="834",name="Tanzania",isoname="Tanzania, United Republic of"},
["UA"] = {alpha3="UKR",numeric="804",name="Ukraine"},
["UG"] = {alpha3="UGA",numeric="800",name="Uganda"},
["UM"] = {alpha3="UMI",numeric="581",name="United States Minor Outlying Islands"},
["US"] = {alpha3="USA",numeric="840",name="United States",isoname="United States of America",altnames={"US","USA","U.S."}},
["UY"] = {alpha3="URY",numeric="858",name="Uruguay"},
["UZ"] = {alpha3="UZB",numeric="860",name="Uzbekistan"},
["VA"] = {alpha3="VAT",numeric="336",name="Vatican City",isoname="Holy See",altnames={"Holy See (Vatican City State)","Vatican City State"}},
["VC"] = {alpha3="VCT",numeric="670",name="Saint Vincent and the Grenadines",altnames={"St Vincent and the Grenadines"}},
["VE"] = {alpha3="VEN",numeric="862",name="Venezuela",isoname="Venezuela (Bolivarian Republic of)"},
["VG"] = {alpha3="VGB",numeric="092",name="British Virgin Islands",isoname="Virgin Islands (British)",altnames={"UK Virgin Islands","BVI"}},
["VI"] = {alpha3="VIR",numeric="850",name="United States Virgin Islands",isoname="Virgin Islands (U.S.)",altnames={"US Virgin Islands","USVI"}},
["VN"] = {alpha3="VNM",numeric="704",name="Vietnam",isoname="Viet Nam"},
["VU"] = {alpha3="VUT",numeric="548",name="Vanuatu"},
["WF"] = {alpha3="WLF",numeric="876",name="Wallis and Futuna"},
["WS"] = {alpha3="WSM",numeric="882",name="Samoa"},
["YE"] = {alpha3="YEM",numeric="887",name="Yemen"},
["YT"] = {alpha3="MYT",numeric="175",name="Mayotte"},
["ZA"] = {alpha3="ZAF",numeric="710",name="South Africa"},
["ZM"] = {alpha3="ZMB",numeric="894",name="Zambia"},
["ZW"] = {alpha3="ZWE",numeric="716",name="Zimbabwe"}
}
354v6e4nt0ba73omd7wvf0syrhii9kg
Module:WikidataCoord
828
2405
10104
2026-04-02T07:15:13Z
De-Invincible
36
Created page with "require('strict') local getArgs = require('Module:Arguments').getArgs local patterns = { '(%d+)°(%d+)'([%d%.]+)"([NS]),%s*(%d+)°(%d+)'([%d%.]+)"([EW])', -- if the returned data looks like 55°13'12"N, 23°17'17"E '(%d+)°(%d+)'([NS]),%s*(%d+)°(%d+)'([EW])', -- if the returned data looks like 54°24'N, 25°25'E '(%d+)°(%d+)[′\']([%d%.]+)[″\"]([NS]),?%s*(%d+)°(%d+)[′\']([%d%.]+)[″\"]([EW])', -- when..."
10104
Scribunto
text/plain
require('strict')
local getArgs = require('Module:Arguments').getArgs
local patterns = {
'(%d+)°(%d+)'([%d%.]+)"([NS]),%s*(%d+)°(%d+)'([%d%.]+)"([EW])', -- if the returned data looks like 55°13'12"N, 23°17'17"E
'(%d+)°(%d+)'([NS]),%s*(%d+)°(%d+)'([EW])', -- if the returned data looks like 54°24'N, 25°25'E
'(%d+)°(%d+)[′\']([%d%.]+)[″\"]([NS]),?%s*(%d+)°(%d+)[′\']([%d%.]+)[″\"]([EW])', -- when args[1] is a dms string that uses quotes or primes
'(%d+)°(%d+)[′\']([NS]),?%s*(%d+)°(%d+)[′\']([EW])', -- when args[1] is a dms string that uses quotes or primes, bit shorter format
'(%d+%.?%d*)°([NS]),?%s*(%d+%.?%d*)°([EW])', -- when args[1] is a decimal degrees string
}
local params = {'display', 'format', 'name', 'notes'}; -- {{coord}} template paramters
--[[--------------------------< I S _ S E T >------------------------------------------------------------------
Whether variable is set or not. A variable is set when it is not nil and not empty.
]]
local function is_set( var )
return not (var == nil or var == '');
end
--[[--------------------------< M A I N >----------------------------------------------------------------------
Template entry point. This function takes up to two unnamed positional parameters:
1 = coordinate string typically from a call to Wikidata like this: {{#property:P625|from=Q...}}
2 = coordinate parameters; see Template:Coord
Also takes the named parameters |display=, |format=, |name=, |notes= which it passes on to {{coord}}
Reformats the Wikidata coordinate string into unnamed parameters for {{coord}}
{{#invoke:WikidataCoord|main|{{#property:P625|from={{{1}}}}}|{{{2}}}|display={{{display}}}|format={{{format}}}|name={{{name}}}|notes={{{notes}}}}}
]]
local function main (frame)
local args = getArgs(frame);
local lat_long = {}; -- table of lat/long coords extracted from wikidata return
if not is_set (args[1]) then -- in case wikidata returns nothing (happens when Q... is wrong)
return '<span style="font-size:100%" class="error">{{WikidataCoord}} – missing coordinate data</span>'; -- error message and quit
else
for _, pattern in ipairs (patterns) do
lat_long[1], lat_long[2], lat_long[3], lat_long[4], lat_long[5], lat_long[6], lat_long[7], lat_long[8] =
mw.ustring.match (args[1], pattern)
if lat_long[1] then
break;
end
end
end
if not lat_long[1] then
return '<span style="font-size:100%" class="error">{{WikidataCoord}} – malformed coordinate data</span>'; -- wikidata returned something else
end
if is_set (args[2]) then -- coordinate parameters are in second unnammed positional parameter
table.insert (lat_long, args[2]); -- add coordinate parameters as next positional parameter after coordnates
end
for _, param in ipairs (params) do
if is_set (args[param]) then
lat_long[param] = args[param]; -- add the named parameters if they have a value
end
end
if args._debug then
return table.concat ({'<code style="color:inherit; background:inherit; border:none;">{{coord|', table.concat (lat_long, '|' ), '}}</code>'});
end
return frame:expandTemplate ({title = 'coord', args=lat_long}); -- invoke template {{coord}} with wikidata lat/long
end
--[[--------------------------< E X P O R T E D F U N C T I O N >--------------------------------------------
]]
return {main = main}
7yfsh0uuumf6p61n3lha5s1utw2dz4z
Module:Transcluder
828
2406
10107
2026-04-02T07:32:42Z
De-Invincible
36
Created page with "------------------------------------------------------------ -- THIS MODULE IS DEPRECATED AND NO LONGER MAINTAINED -- PLEASE USE Module:WikitextParser INSTEAD -- SEE https://en.wikipedia.org/wiki/Module:WikitextParser ------------------------------------------------------------ -- Module:Transcluder is a general-purpose transclusion engine -- Documentation and master version: https://en.wikipedia.org/wiki/Module:Transcluder -- Authors: User:Sophivorus, User:Certes & oth..."
10107
Scribunto
text/plain
------------------------------------------------------------
-- THIS MODULE IS DEPRECATED AND NO LONGER MAINTAINED
-- PLEASE USE Module:WikitextParser INSTEAD
-- SEE https://en.wikipedia.org/wiki/Module:WikitextParser
------------------------------------------------------------
-- Module:Transcluder is a general-purpose transclusion engine
-- Documentation and master version: https://en.wikipedia.org/wiki/Module:Transcluder
-- Authors: User:Sophivorus, User:Certes & others
-- License: CC-BY-SA-3.0
local p = {}
-- Helper function to test for truthy and falsy values
-- @todo Somehow internationalize it
local function truthy(value)
if not value or value == '' or value == 0 or value == '0' or value == 'false' or value == 'no' or value == 'non' then
return false
end
return true
end
-- Helper function to match from a list of regular expressions
-- Like so: match pre..list[1]..post or pre..list[2]..post or ...
local function matchAny(text, pre, list, post, init)
local match = {}
for i = 1, #list do
match = { mw.ustring.match(text, pre .. list[i] .. post, init) }
if match[1] then return unpack(match) end
end
return nil
end
-- Like matchAny but for Category/File links with less overhead
local function matchAnyLink(text, list)
local match
for _, v in ipairs(list) do
match = string.match(text, '%[%[%s*' .. v .. '%s*:.*%]%]')
if match then break end
end
return match
end
-- Helper function to escape a string for use in regexes
local function escapeString(str)
return string.gsub(str, '[%^%$%(%)%.%[%]%*%+%-%?%%]', '%%%0')
end
-- Helper function to remove a string from a text
local function removeString(text, str)
local pattern = escapeString(str)
if #pattern > 9999 then -- strings longer than 10000 bytes can't be put into regexes
pattern = escapeString(mw.ustring.sub(str, 1, 999)) .. '.-' .. escapeString(mw.ustring.sub(str, -999))
end
return string.gsub(text, pattern, '')
end
-- Helper function to convert a comma-separated list of numbers or min-max ranges into a list of booleans
-- @param flags Comma-separated list of numbers or min-max ranges, for example '1,3-5'
-- @return Map from integers to booleans, for example {1=true,2=false,3=true,4=true,5=true}
-- @return Boolean indicating whether the flags should be treated as a blacklist or not
local function parseFlags(value)
local flags = {}
local blacklist = false
if not value then return nil, false end
if type(value) == 'number' then
if value < 0 then
value = -value
blacklist = true
end
flags = { [value] = true }
elseif type(value) == 'string' then
if string.sub(value, 1, 1) == '-' then
blacklist = true
value = string.sub(value, 2)
end
local ranges = mw.text.split(value, ',') -- split ranges: '1,3-5' to {'1','3-5'}
for _, range in pairs(ranges) do
range = mw.text.trim(range)
local min, max = mw.ustring.match(range, '^(%d+)%s*[-–—]%s*(%d+)$') -- '3-5' to min=3 max=5
if not max then min, max = string.match(range, '^((%d+))$') end -- '1' to min=1 max=1
if max then
for i = min, max do flags[i] = true end
else
flags[range] = true -- if we reach this point, the string had the form 'a,b,c' rather than '1,2,3'
end
end
-- List has the form { [1] = false, [2] = true, ['c'] = false }
-- Convert it to { [1] = true, [2] = true, ['c'] = true }
-- But if ANY value is set to false, treat the list as a blacklist
elseif type(value) == 'table' then
for i, v in pairs(value) do
if v == false then blacklist = true end
flags[i] = true
end
end
return flags, blacklist
end
-- Helper function to see if a value matches any of the given flags
local function matchFlag(value, flags)
if not value then return false end
value = tostring(value)
local lang = mw.language.getContentLanguage()
local lcvalue = lang:lcfirst(value)
local ucvalue = lang:ucfirst(value)
for flag in pairs(flags) do
if value == tostring(flag)
or lcvalue == flag
or ucvalue == flag
or ( not tonumber(flag) and mw.ustring.match(value, flag) ) then
return true
end
end
end
-- Helper function to convert template arguments into an array of options fit for get()
local function parseArgs(frame)
local args = {}
for key, value in pairs(frame:getParent().args) do args[key] = value end
for key, value in pairs(frame.args) do args[key] = value end -- args from Lua calls have priority over parent args from template
return args
end
-- Error handling function
-- Throws a Lua error or returns an empty string if error reporting is disabled
local function throwError(key, value)
local TNT = require('Module:TNT')
local ok, message = pcall(TNT.format, 'I18n/Module:Transcluder.tab', 'error-' .. key, value)
if not ok then message = key end
error(message, 2)
end
-- Error handling function
-- Returns a wiki friendly error or an empty string if error reporting is disabled
local function getError(key, value)
local TNT = require('Module:TNT')
local ok, message = pcall(TNT.format, 'I18n/Module:Transcluder.tab', 'error-' .. key, value)
if not ok then message = key end
message = mw.html.create('div'):addClass('error'):wikitext(message)
return message
end
-- Helper function to get the local name of a namespace and all its aliases
-- @param name Canonical name of the namespace, for example 'File'
-- @return Local name of the namespace and all aliases, for example {'File','Image','Archivo','Imagen'}
local function getNamespaces(name)
local namespaces = mw.clone(mw.site.namespaces[name].aliases) -- Clone because https://en.wikipedia.org/w/index.php?diff=1056921358
table.insert(namespaces, mw.site.namespaces[name].name)
table.insert(namespaces, mw.site.namespaces[name].canonicalName)
return namespaces
end
-- Get the page wikitext, following redirects
-- Also returns the page name, or the target page name if a redirect was followed, or false if no page was found
-- For file pages, returns the content of the file description page
local function getText(page, noFollow)
page = mw.text.decode(page)
local title = mw.title.new(page)
if not title then return false, false end
local target = title.redirectTarget
if target and not noFollow then title = target end
local text = title:getContent()
if not text then return false, title.prefixedText end
-- Remove <noinclude> tags
text = string.gsub(text, '<[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-</[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>', '') -- remove noinclude bits
-- Keep <onlyinclude> tags
if string.find(text, 'onlyinclude') then -- avoid expensive search if possible
text = text
:gsub('</onlyinclude>.-<onlyinclude>', '') -- remove text between onlyinclude sections
:gsub('^.-<onlyinclude>', '') -- remove text before first onlyinclude section
:gsub('</onlyinclude>.*', '') -- remove text after last onlyinclude section
end
return text, title.prefixedText
end
-- Get the requested files from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of files to return, for example 2 or '1,3-5'. Omit to return all files.
-- @return Sequence of strings containing the wikitext of the requested files.
-- @return Original wikitext minus requested files.
local function getFiles(text, flags)
local files = {}
local flags, blacklist = parseFlags(flags)
local fileNamespaces = getNamespaces('File')
local name
local count = 0
for file in string.gmatch(text, '%b[]') do
if matchAnyLink(file, fileNamespaces) then
name = string.match(file, '%[%[[^:]-:([^]|]+)')
count = count + 1
if not blacklist and ( not flags or flags[count] or matchFlag(name, flags) )
or blacklist and flags and not flags[count] and not matchFlag(name, flags) then
table.insert(files, file)
else
text = removeString(text, file)
end
end
end
return files, text
end
-- Get the requested tables from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of tables to return, for example 2 or '1,3-5'. Omit to return all tables.
-- @return Sequence of strings containing the wikitext of the requested tables.
-- @return Original wikitext minus requested tables.
local function getTables(text, flags)
local tables = {}
local flags, blacklist = parseFlags(flags)
local id
local count = 0
for t in string.gmatch('\n' .. text, '\n%b{}') do
if string.sub(t, 1, 3) == '\n{|' then
id = string.match(t, '\n{|[^\n]-id%s*=%s*["\']?([^"\'\n]+)["\']?[^\n]*\n')
count = count + 1
if not blacklist and ( not flags or flags[count] or flags[id] )
or blacklist and flags and not flags[count] and not flags[id] then
table.insert(tables, t)
else
text = removeString(text, t)
end
end
end
return tables, text
end
-- Get the requested templates from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of templates to return, for example 2 or '1,3-5'. Omit to return all templates.
-- @return Sequence of strings containing the wikitext of the requested templates.
-- @return Original wikitext minus requested templates.
local function getTemplates(text, flags)
local templates = {}
local flags, blacklist = parseFlags(flags)
local name
local count = 0
for template in string.gmatch(text, '{%b{}}') do
if string.sub(template, 1, 3) ~= '{{#' then -- skip parser functions like #if
name = mw.text.trim( string.match(template, '{{([^}|\n]+)') or "" ) -- get the template name
if name ~= "" then
count = count + 1
if not blacklist and ( not flags or flags[count] or matchFlag(name, flags) )
or blacklist and flags and not flags[count] and not matchFlag(name, flags) then
table.insert(templates, template)
else
text = removeString(text, template)
end
end
end
end
return templates, text
end
-- Get the requested template parameters from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of parameters to return, for example 2 or '1,3-5'. Omit to return all parameters.
-- @return Map from parameter name to value, NOT IN THE ORIGINAL ORDER
-- @return Original wikitext minus requested parameters.
-- @return Order in which the parameters were parsed.
local function getParameters(text, flags)
local parameters, parameterOrder = {}, {}
local flags, blacklist = parseFlags(flags)
local params, count, parts, key, value
for template in string.gmatch(text, '{%b{}}') do
params = string.match(template, '{{[^|}]-|(.*)}}')
if params then
count = 0
-- Temporarily replace pipes in subtemplates and links to avoid chaos
for subtemplate in string.gmatch(params, '{%b{}}') do
params = string.gsub(params, escapeString(subtemplate), string.gsub(subtemplate, ".", {["%"]="%%", ["|"]="@@:@@", ["="]="@@_@@"}) )
end
for link in string.gmatch(params, '%b[]') do
params = string.gsub(params, escapeString(link), string.gsub(link, ".", {["%"]="%%", ["|"]="@@:@@", ["="]="@@_@@"}) )
end
for parameter in mw.text.gsplit(params, '|') do
parts = mw.text.split(parameter, '=')
key = mw.text.trim(parts[1])
if #parts == 1 then
value = key
count = count + 1
key = count
else
value = mw.text.trim(table.concat(parts, '=', 2))
end
value = string.gsub(string.gsub(value, '@@:@@', '|'), '@@_@@', '=')
if not blacklist and ( not flags or matchFlag(key, flags) )
or blacklist and flags and not matchFlag(key, flags) then
table.insert(parameterOrder, key)
parameters[key] = value
else
text = removeString(text, parameter)
end
end
end
end
return parameters, text, parameterOrder
end
-- Get the requested lists from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of lists to return, for example 2 or '1,3-5'. Omit to return all lists.
-- @return Sequence of strings containing the wikitext of the requested lists.
-- @return Original wikitext minus requested lists.
local function getLists(text, flags)
local lists = {}
local flags, blacklist = parseFlags(flags)
local count = 0
for list in string.gmatch('\n' .. text .. '\n\n', '\n([*#].-)\n[^*#]') do
count = count + 1
if not blacklist and ( not flags or flags[count] )
or blacklist and flags and not flags[count] then
table.insert(lists, list)
else
text = removeString(text, list)
end
end
return lists, text
end
-- Get the requested paragraphs from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of paragraphs to return, for example 2 or '1,3-5'. Omit to return all paragraphs.
-- @return Sequence of strings containing the wikitext of the requested paragraphs.
-- @return Original wikitext minus requested paragraphs.
local function getParagraphs(text, flags)
local paragraphs = {}
local flags, blacklist = parseFlags(flags)
-- Remove non-paragraphs
local elements
local temp = '\n' .. text .. '\n'
elements, temp = getLists(temp, 0) -- remove lists
elements, temp = getFiles(temp, 0) -- remove files
temp = mw.text.trim((temp
:gsub('\n%b{} *\n', '\n%0\n') -- add spacing between tables and block templates
:gsub('\n%b{} *\n', '\n') -- remove tables and block templates
:gsub('\n==+[^=]+==+ *\n', '\n') -- remove section titles
))
-- Assume that anything remaining is a paragraph
local count = 0
for paragraph in mw.text.gsplit(temp, '\n\n+') do
if mw.text.trim(paragraph) ~= '' then
count = count + 1
if not blacklist and ( not flags or flags[count] )
or blacklist and flags and not flags[count] then
table.insert(paragraphs, paragraph)
else
text = removeString(text, paragraph)
end
end
end
return paragraphs, text
end
-- Get the requested categories from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of categories to return, for example 2 or '1,3-5'. Omit to return all categories.
-- @return Sequence of strings containing the wikitext of the requested categories.
-- @return Original wikitext minus requested categories.
local function getCategories(text, flags)
local categories = {}
local flags, blacklist = parseFlags(flags)
local categoryNamespaces = getNamespaces('Category')
local name
local count = 0
for category in string.gmatch(text, '%b[]') do
if matchAnyLink(category, categoryNamespaces) then
name = string.match(category, '%[%[[^:]-:([^]|]+)')
count = count + 1
if not blacklist and ( not flags or flags[count] or matchFlag(name, flags) )
or blacklist and flags and not flags[count] and not matchFlag(name, flags) then
table.insert(categories, category)
else
text = removeString(text, category)
end
end
end
return categories, text
end
-- Get the requested references from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of references to return, for example 2 or '1,3-5'. Omit to return all references.
-- @return Sequence of strings containing the wikitext of the requested references.
-- @return Original wikitext minus requested references.
local function getReferences(text, flags)
local references = {}
-- Remove all references, including citations, when 0 references are requested
-- This is kind of hacky but currently necessary because the rest of the code
-- doesn't remove citations like <ref name="Foo" /> if Foo is defined elsewhere
if flags and not truthy(flags) then
text = string.gsub(text, '<%s*[Rr][Ee][Ff][^>/]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>', '')
text = string.gsub(text, '<%s*[Rr][Ee][Ff][^>/]*/%s*>', '')
return references, text
end
local flags, blacklist = parseFlags(flags)
local name
local count = 0
for reference in string.gmatch(text, '<%s*[Rr][Ee][Ff][^>/]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>') do
name = string.match(reference, '<%s*[Rr][Ee][Ff][^>]*name%s*=%s*["\']?([^"\'>/]+)["\']?[^>]*%s*>')
count = count + 1
if not blacklist and ( not flags or flags[count] or matchFlag(name, flags) )
or blacklist and flags and not flags[count] and not matchFlag(name, flags) then
table.insert(references, reference)
else
text = removeString(text, reference)
if name then
for citation in string.gmatch(text, '<%s*[Rr][Ee][Ff][^>]*name%s*=%s*["\']?' .. escapeString(name) .. '["\']?[^/>]*/%s*>') do
text = removeString(text, citation)
end
end
end
end
return references, text
end
-- Get the lead section from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @return Wikitext of the lead section.
local function getLead(text)
text = string.gsub('\n' .. text, '\n==.*', '')
text = mw.text.trim(text)
if not text then return throwError('lead-empty') end
return text
end
-- Get the requested sections from the given wikitext.
-- @param text Required. Wikitext to parse.
-- @param flags Range of sections to return, for example 2 or '1,3-5'. Omit to return all sections.
-- @return Sequence of strings containing the wikitext of the requested sections.
-- @return Original wikitext minus requested sections.
local function getSections(text, flags)
local sections = {}
local flags, blacklist = parseFlags(flags)
local count = 0
local prefix, section, suffix
for title in string.gmatch('\n' .. text .. '\n==', '\n==+%s*([^=]+)%s*==+') do
count = count + 1
prefix, section, suffix = string.match('\n' .. text .. '\n==', '\n()==+%s*' .. escapeString(title) .. '%s*==+(.-)()\n==')
if not blacklist and ( not flags or flags[count] or matchFlag(title, flags) )
or blacklist and flags and not flags[count] and not matchFlag(title, flags) then
sections[title] = section
else
text = string.sub(text, 1, prefix) .. string.sub(text, suffix)
text = string.gsub(text, '\n?==$', '') -- remove the trailing \n==
end
end
return sections, text
end
-- Get the requested section or <section> tag from the given wikitext (including subsections).
-- @param text Required. Wikitext to parse.
-- @param section Required. Title of the section to get (in wikitext), for example 'History' or 'History of [[Athens]]'.
-- @return Wikitext of the requested section.
local function getSection(text, section)
section = mw.text.trim(section)
local escapedSection = escapeString(section)
-- First check if the section title matches a <section> tag
if string.find(text, '<%s*[Ss]ection%s+begin%s*=%s*["\']?%s*' .. escapedSection .. '%s*["\']?%s*/>') then -- avoid expensive search if possible
text = mw.text.trim((text
:gsub('<%s*[Ss]ection%s+end=%s*["\']?%s*'.. escapedSection ..'%s*["\']?%s*/>.-<%s*[Ss]ection%s+begin%s*=%s*["\']?%s*' .. escapedSection .. '%s*["\']?%s*/>', '') -- remove text between section tags
:gsub('^.-<%s*[Ss]ection%s+begin%s*=%s*["\']?%s*' .. escapedSection .. '%s*["\']?%s*/>', '') -- remove text before first section tag
:gsub('<%s*[Ss]ection%s+end=%s*["\']?%s*'.. escapedSection ..'%s*["\']?%s*/>.*', '') -- remove text after last section tag
))
if text == '' then return throwError('section-tag-empty', section) end
return text
end
local level, text = string.match('\n' .. text .. '\n', '\n(==+)%s*' .. escapedSection .. '%s*==.-\n(.*)')
if not text then return throwError('section-not-found', section) end
local nextSection = '\n==' .. string.rep('=?', #level - 2) .. '[^=].*'
text = string.gsub(text, nextSection, '') -- remove later sections with headings at this level or higher
text = mw.text.trim(text)
if text == '' then return throwError('section-empty', section) end
return text
end
-- Replace the first call to each reference defined outside of the text for the full reference, to prevent undefined references
-- Then prefix the page title to the reference names to prevent conflicts
-- that is, replace <ref name="Foo"> for <ref name="Title of the article Foo">
-- and also <ref name="Foo" /> for <ref name="Title of the article Foo" />
-- also remove reference groups: <ref name="Foo" group="Bar"> for <ref name="Title of the article Foo">
-- and <ref group="Bar"> for <ref>
-- @todo The current regex may fail in cases with both kinds of quotes, like <ref name="Darwin's book">
local function fixReferences(text, page, full)
if not full then full = getText(page) end
local refNames = {}
local refName
local refBody
local position = 1
while position < mw.ustring.len(text) do
refName, position = mw.ustring.match(text, '<%s*[Rr][Ee][Ff][^>]*name%s*=%s*["\']?([^"\'>]+)["\']?[^>]*/%s*>()', position)
if refName then
refName = mw.text.trim(refName)
if not refNames[refName] then -- make sure we process each ref name only once
table.insert(refNames, refName)
refName = escapeString(refName)
refBody = mw.ustring.match(text, '<%s*[Rr][Ee][Ff][^>]*name%s*=%s*["\']?%s*' .. refName .. '%s*["\']?[^>/]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>')
if not refBody then -- the ref body is not in the excerpt
refBody = mw.ustring.match(full, '<%s*[Rr][Ee][Ff][^>]*name%s*=%s*["\']?%s*' .. refName .. '%s*["\']?[^/>]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>')
if refBody then -- the ref body was found elsewhere
text = mw.ustring.gsub(text, '<%s*[Rr][Ee][Ff][^>]*name%s*=%s*["\']?%s*' .. refName .. '%s*["\']?[^>]*/?%s*>', mw.ustring.gsub(refBody, '%%', '%%%%'), 1)
end
end
end
else
position = mw.ustring.len(text)
end
end
page = string.gsub(page, '"', '') -- remove any quotation marks from the page title
text = mw.ustring.gsub(text, '<%s*[Rr][Ee][Ff][^>]*name%s*=%s*["\']?([^"\'>/]+)["\']?[^>/]*(/?)%s*>', '<ref name="' .. page .. ' %1"%2>')
text = mw.ustring.gsub(text, '<%s*[Rr][Ee][Ff]%s*group%s*=%s*["\']?[^"\'>/]+["\']%s*>', '<ref>')
return text
end
-- Replace the bold title or synonym near the start of the page by a link to the page
local function linkBold(text, page)
local lang = mw.language.getContentLanguage()
local position = mw.ustring.find(text, "'''" .. lang:ucfirst(page) .. "'''", 1, true) -- look for "'''Foo''' is..." (uc) or "A '''foo''' is..." (lc)
or mw.ustring.find(text, "'''" .. lang:lcfirst(page) .. "'''", 1, true) -- plain search: special characters in page represent themselves
if position then
local length = mw.ustring.len(page)
text = mw.ustring.sub(text, 1, position + 2) .. "[[" .. mw.ustring.sub(text, position + 3, position + length + 2) .. "]]" .. mw.ustring.sub(text, position + length + 3, -1) -- link it
else -- look for anything unlinked in bold, assumed to be a synonym of the title (e.g. a person's birth name)
text = mw.ustring.gsub(text, "()'''(.-'*)'''", function(a, b)
if not mw.ustring.find(b, "%[") and not mw.ustring.find(b, "%{") then -- if not wikilinked or some weird template
return "'''[[" .. page .. "|" .. b .. "]]'''" -- replace '''Foo''' by '''[[page|Foo]]'''
else
return nil -- instruct gsub to make no change
end
end, 1) -- "end" here terminates the anonymous replacement function(a, b) passed to gsub
end
return text
end
-- Remove non-free files.
-- @param text Required. Wikitext to clean.
-- @return Clean wikitext.
local function removeNonFreeFiles(text)
local fileNamespaces = getNamespaces('File')
local fileName
local fileDescription
local frame = mw.getCurrentFrame()
for file in string.gmatch(text, '%b[]') do
if matchAnyLink(file, fileNamespaces) then
fileName = 'File:' .. string.match(file, '%[%[[^:]-:([^]|]+)')
fileDescription, fileName = getText(fileName)
if fileName then
if not fileDescription or fileDescription == '' then
fileDescription = frame:preprocess('{{' .. fileName .. '}}') -- try Commons
end
if fileDescription and string.match(fileDescription, '[Nn]on%-free') then
text = removeString(text, file)
end
end
end
end
return text
end
-- Remove any self links
local function removeSelfLinks(text)
local lang = mw.language.getContentLanguage()
local page = escapeString(mw.title.getCurrentTitle().prefixedText)
local ucpage = lang:ucfirst(page)
local lcpage = lang:lcfirst(page)
text = text
:gsub('%[%[(' .. ucpage .. ')%]%]', '%1')
:gsub('%[%[(' .. lcpage .. ')%]%]', '%1')
:gsub('%[%[' .. ucpage .. '|([^]]+)%]%]', '%1')
:gsub('%[%[' .. lcpage .. '|([^]]+)%]%]', '%1')
return text
end
-- Remove all wikilinks
local function removeLinks(text)
text = text
:gsub('%[%[[^%]|]+|([^]]+)%]%]', '%1')
:gsub('%[%[([^]]+)%]%]', '%1')
:gsub('%[[^ ]+ ([^]]+)%]', '%1')
:gsub('%[([^]]+)%]', '%1')
return text
end
-- Remove HTML comments
local function removeComments(text)
text = string.gsub(text, '<!%-%-.-%-%->', '')
return text
end
-- Remove behavior switches, such as __NOTOC__
local function removeBehaviorSwitches(text)
text = string.gsub(text, '__[A-Z]+__', '')
return text
end
-- Remove bold text
local function removeBold(text)
text = string.gsub(text, "'''", '')
return text
end
-- Main function for modules
local function get(page, options)
if not options then options = {} end
-- Make sure the page exists
if not page then return throwError('no-page') end
page = mw.text.trim(page)
page = mw.text.decode(page)
if page == '' then return throwError('no-page') end
local page, hash, section = string.match(page, '([^#]+)(#?)(.*)')
local text, temp = getText(page, options.noFollow)
if not temp then return throwError('invalid-title', page) end
page = temp
if not text then return throwError('page-not-found', page) end
local full = text -- save the full text for fixReferences below
-- Get the requested section
if truthy(section) then
text = getSection(text, section)
elseif truthy(hash) then
text = getLead(text)
end
-- Keep only the requested elements
local elements
if options.only then
if options.only == 'sections' then elements = getSections(text, options.sections) end
if options.only == 'lists' then elements = getLists(text, options.lists) end
if options.only == 'files' then elements = getFiles(text, options.files) end
if options.only == 'tables' then elements = getTables(text, options.tables) end
if options.only == 'templates' then elements = getTemplates(text, options.templates) end
if options.only == 'parameters' then elements = getParameters(text, options.parameters) end
if options.only == 'paragraphs' then elements = getParagraphs(text, options.paragraphs) end
if options.only == 'categories' then elements = getCategories(text, options.categories) end
if options.only == 'references' then elements = getReferences(text, options.references) end
text = ''
if elements then
for key, element in pairs(elements) do
text = text .. '\n' .. element .. '\n'
end
end
end
-- Filter the requested elements
if options.sections and options.only ~= 'sections' then elements, text = getSections(text, options.sections) end
if options.lists and options.only ~= 'lists' then elements, text = getLists(text, options.lists) end
if options.files and options.only ~= 'files' then elements, text = getFiles(text, options.files) end
if options.tables and options.only ~= 'tables' then elements, text = getTables(text, options.tables) end
if options.templates and options.only ~= 'templates' then elements, text = getTemplates(text, options.templates) end
if options.parameters and options.only ~= 'parameters' then elements, text = getParameters(text, options.parameters) end
if options.paragraphs and options.only ~= 'paragraphs' then elements, text = getParagraphs(text, options.paragraphs) end
if options.categories and options.only ~= 'categories' then elements, text = getCategories(text, options.categories) end
if options.references and options.only ~= 'references' then elements, text = getReferences(text, options.references) end
-- Misc options
if truthy(options.fixReferences) then text = fixReferences(text, page, full) end
if truthy(options.linkBold) and not truthy(section) then text = linkBold(text, page) end
if truthy(options.noBold) then text = removeBold(text) end
if truthy(options.noLinks) then text = removeLinks(text) end
if truthy(options.noSelfLinks) then text = removeSelfLinks(text) end
if truthy(options.noNonFreeFiles) then text = removeNonFreeFiles(text) end
if truthy(options.noBehaviorSwitches) then text = removeBehaviorSwitches(text) end
if truthy(options.noComments) then text = removeComments(text) end
-- Remove multiple newlines left over from removing elements
text = string.gsub(text, '\n\n\n+', '\n\n')
text = mw.text.trim(text)
return text
end
-- Main invocation function for templates
local function main(frame)
local args = parseArgs(frame)
local page = args[1]
local ok, text = pcall(get, page, args)
if not ok then return getError(text) end
local raw = args['raw']
if raw then return text end
return frame:preprocess(text)
end
-- Entry points for templates
function p.main(frame) return main(frame) end
-- Entry points for modules
function p.get(page, options) return get(page, options) end
function p.getText(page, noFollow) return getText(page, noFollow) end
function p.getLead(text) return getLead(text) end
function p.getSection(text, section) return getSection(text, section) end
function p.getSections(text, flags) return getSections(text, flags) end
function p.getParagraphs(text, flags) return getParagraphs(text, flags) end
function p.getParameters(text, flags) return getParameters(text, flags) end
function p.getCategories(text, flags) return getCategories(text, flags) end
function p.getReferences(text, flags) return getReferences(text, flags) end
function p.getTemplates(text, flags) return getTemplates(text, flags) end
function p.getTables(text, flags) return getTables(text, flags) end
function p.getLists(text, flags) return getLists(text, flags) end
function p.getFiles(text, flags) return getFiles(text, flags) end
function p.getError(message, value) return getError(message, value) end
-- Expose handy methods
function p.truthy(value) return truthy(value) end
function p.parseArgs(frame) return parseArgs(frame) end
function p.matchAny(text, pre, list, post, init) return matchAny(text, pre, list, post, init) end
function p.matchFlag(value, flags) return matchFlag(value, flags) end
function p.getNamespaces(name) return getNamespaces(name) end
function p.removeBold(text) return removeBold(text) end
function p.removeLinks(text) return removeLinks(text) end
function p.removeSelfLinks(text) return removeSelfLinks(text) end
function p.removeNonFreeFiles(text) return removeNonFreeFiles(text) end
function p.removeBehaviorSwitches(text) return removeBehaviorSwitches(text) end
function p.removeComments(text) return removeComments(text) end
return p
9av2i2esx9m7pg9lduvgpz2xonweb3e
Sule Tankarkar
0
2407
10118
2026-04-02T08:58:36Z
Zahraswaty
193
Created page with "'''Sule Tankarkar''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10118
wikitext
text/x-wiki
'''Sule Tankarkar''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
gdcoxeczgk7g7vmlr251burxtl2smd7
Taura
0
2408
10119
2026-04-02T09:00:06Z
Zahraswaty
193
Created page with "'''Taura''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10119
wikitext
text/x-wiki
'''Taura''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
60jbnfmaugz811kovkz7yq5ojesgww1
Yankwashi
0
2409
10120
2026-04-02T09:01:07Z
Zahraswaty
193
Created page with "'''Yankwashi''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]]. {{Jigawa}}"
10120
wikitext
text/x-wiki
'''Yankwashi''' nanta tòotai ma hukuma ne mà [[Jigawa]] à ƴal tà [[Lanjèeriya]].
{{Jigawa}}
l5smd4k6l4yl4sk0p9bgvkh0ik9b5hl
Ajingi
0
2410
10121
2026-04-02T09:09:33Z
Zahraswaty
193
Created page with "'''Ajingi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10121
wikitext
text/x-wiki
'''Ajingi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
1arr4lzasq8zecahl3si1zn2bws0fwj
Albasu
0
2411
10122
2026-04-02T09:10:33Z
Zahraswaty
193
Created page with "'''Albasu''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10122
wikitext
text/x-wiki
'''Albasu''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
kdogl0k0hiyouwpm43a8lkigo87zbmw
Bagwai
0
2412
10123
2026-04-02T09:11:17Z
Zahraswaty
193
Created page with "''Bagwai'' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10123
wikitext
text/x-wiki
''Bagwai'' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
td251qb3yvr9je2thr1lavaw6ip09n3
Bebeji
0
2413
10124
2026-04-02T09:12:16Z
Zahraswaty
193
Created page with "'''Bebeji''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10124
wikitext
text/x-wiki
'''Bebeji''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
fxv3o8j0q02utt5aiuu6q60p7ba01nr
Bichi
0
2414
10125
2026-04-02T09:13:06Z
Zahraswaty
193
Created page with "'''Bichi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10125
wikitext
text/x-wiki
'''Bichi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
e88u6zhjtifo80b7r5mprzbypatrm46
Bunkure
0
2415
10126
2026-04-02T09:13:55Z
Zahraswaty
193
Created page with "'''Bunkure''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10126
wikitext
text/x-wiki
'''Bunkure''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
3yhu1wunkncp6utzz1mxxyx53kcr0zj
Dala
0
2416
10127
2026-04-02T09:14:47Z
Zahraswaty
193
Created page with "'''Dala''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10127
wikitext
text/x-wiki
'''Dala''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
3hrhay1qn2o4h2ec9nzvts6s37bkchr
Dambatta
0
2417
10128
2026-04-02T09:15:35Z
Zahraswaty
193
Created page with "'''Dambatta''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10128
wikitext
text/x-wiki
'''Dambatta''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
fr62c60l0jjf2gt1bsr19dyi9bzvwaw
Dawakin Kudu
0
2418
10129
2026-04-02T09:16:27Z
Zahraswaty
193
Created page with "'''Dawakin Kudu''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10129
wikitext
text/x-wiki
'''Dawakin Kudu''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
funmvig25vwv9t7xpe08ww03n21gr6m
Doguwa
0
2419
10130
2026-04-02T09:17:26Z
Zahraswaty
193
Created page with "'''Doguwa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10130
wikitext
text/x-wiki
'''Doguwa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
2uk9g0vghphgoxmg8bxzyk3gjvc0cdx
Gabasawa
0
2420
10131
2026-04-02T09:19:09Z
Zahraswaty
193
Created page with "'''Gabasawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10131
wikitext
text/x-wiki
'''Gabasawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
5oerxd10wivj95z0k2g058ej7gu9cgb
Garko
0
2421
10132
2026-04-02T09:21:41Z
Zahraswaty
193
Created page with "'''Garko''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10132
wikitext
text/x-wiki
'''Garko''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
4jn7cwz460cjo26tzu2lk15nrrwpass
Garun Mallam
0
2422
10133
2026-04-02T09:22:37Z
Zahraswaty
193
Created page with "'''Garun Mallam''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10133
wikitext
text/x-wiki
'''Garun Mallam''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
snemk2ts1lt5ifw1fei5fmq8fjzj3tk
Gaya
0
2423
10134
2026-04-02T09:23:45Z
Zahraswaty
193
Created page with "'''Gaya''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10134
wikitext
text/x-wiki
'''Gaya''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
lnakjlmp51pfkvtnpktz48s9iquql2i
Gezawa
0
2424
10135
2026-04-02T09:24:37Z
Zahraswaty
193
Created page with "'''Gezawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10135
wikitext
text/x-wiki
'''Gezawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
12szgsjifpc0hdih4nd5fsuni98v6uy
Gwarzo
0
2425
10136
2026-04-02T09:25:30Z
Zahraswaty
193
Created page with "'''Gwarzo''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10136
wikitext
text/x-wiki
'''Gwarzo''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
qou6detjcibisj8j78nrq1lzac3cpju
Kabo
0
2426
10137
2026-04-02T09:26:26Z
Zahraswaty
193
Created page with "'''Kabo''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10137
wikitext
text/x-wiki
'''Kabo''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
kp5m2hfumg9wh178o986vubwehwniwi
Karaye
0
2427
10138
2026-04-02T09:27:31Z
Zahraswaty
193
Created page with "'''Karaye''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10138
wikitext
text/x-wiki
'''Karaye''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
omj0dqb538sh7fk3xdhdk7dgweqkjyv
Kibiya
0
2428
10139
2026-04-02T09:28:37Z
Zahraswaty
193
Created page with "'''Kibiya''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10139
wikitext
text/x-wiki
'''Kibiya''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
8ok60cjeh2esivbcm445v1bbneasgm9
Kiru
0
2429
10140
2026-04-02T09:29:58Z
Zahraswaty
193
Created page with "'''Kiru''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10140
wikitext
text/x-wiki
'''Kiru''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
1tf70m2u9b8d9c67xuozemumaonwgdb
Kunchi
0
2430
10141
2026-04-02T09:30:53Z
Zahraswaty
193
Created page with "'''Kunchi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10141
wikitext
text/x-wiki
'''Kunchi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
d9hp9qb0obcg7x4utx6hbov111aeiqt
Kura
0
2431
10142
2026-04-02T09:32:07Z
Zahraswaty
193
Created page with "'''Kura''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10142
wikitext
text/x-wiki
'''Kura''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
3drajxjkw1o10m1d1vi31ez9a48sr08
Madobi
0
2432
10143
2026-04-02T09:34:31Z
Zahraswaty
193
Created page with "'''Modobi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10143
wikitext
text/x-wiki
'''Modobi''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
nnaulonmrlxxxqs787l2ctk7t70m05a
Makoda
0
2433
10144
2026-04-02T09:35:42Z
Zahraswaty
193
Created page with "'''Makoda''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10144
wikitext
text/x-wiki
'''Makoda''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
doyixwphqj02vkx0wd1vycmw7462vgw
Minjibir
0
2434
10145
2026-04-02T09:36:48Z
Zahraswaty
193
Created page with "'''Minjibir''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10145
wikitext
text/x-wiki
'''Minjibir''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
8tinut1ctg6bud0w76lmx7md7ou909v
Nasarawà, Kanàu
0
2435
10146
2026-04-02T09:38:12Z
Zahraswaty
193
Created page with "'''Nasarawa,Kanàu''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10146
wikitext
text/x-wiki
'''Nasarawa,Kanàu''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
4p64uxilb6m8wgpoqiphw51ahza737v
Rano
0
2436
10147
2026-04-02T09:41:39Z
Zahraswaty
193
Created page with "'''Rano''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10147
wikitext
text/x-wiki
'''Rano''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
c9u7rszf4zzw4suzwh637sf7bi539ej
Rimin Gado
0
2437
10148
2026-04-02T09:42:36Z
Zahraswaty
193
Created page with "'''Rimin Gado''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10148
wikitext
text/x-wiki
'''Rimin Gado''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
6w797asqzr0sjpjkwudbeduq3297o15
Rogo
0
2438
10149
2026-04-02T09:43:32Z
Zahraswaty
193
Created page with "'''Rogo''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10149
wikitext
text/x-wiki
'''Rogo''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
fzwnhxl31q9x7m7bp37ris7xssastru
Shanono
0
2439
10150
2026-04-02T09:44:57Z
Zahraswaty
193
Created page with "'''Shanono''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10150
wikitext
text/x-wiki
'''Shanono''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
2gsemtqoridbi8hbabwnmtqgqgtbfb9
Sumaila
0
2440
10151
2026-04-02T09:46:15Z
Zahraswaty
193
Created page with "'''Sumaila''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10151
wikitext
text/x-wiki
'''Sumaila''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
8adaxdq4b6vf32vxlm8nqdb828gk5mj
Takai
0
2441
10152
2026-04-02T09:47:03Z
Zahraswaty
193
Created page with "'''Takai''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10152
wikitext
text/x-wiki
'''Takai''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
6gyrc2u1bfpw6850izgunwxe79fxsvi
Tofa
0
2442
10153
2026-04-02T09:48:11Z
Zahraswaty
193
Created page with "'''Tofa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10153
wikitext
text/x-wiki
'''Tofa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
tulgtsy1gp5kqcgg0spgmyoq85pqwam
Tsanyawa
0
2443
10154
2026-04-02T09:49:11Z
Zahraswaty
193
Created page with "'''Tsanyawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10154
wikitext
text/x-wiki
'''Tsanyawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
jxe83n7mnvqii6p2omfso0175cnxm5v
Tudun Wada
0
2444
10155
2026-04-02T09:50:36Z
Zahraswaty
193
Created page with "'''Tundun Wada''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10155
wikitext
text/x-wiki
'''Tundun Wada''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
o97rhudfez3wia8sf9ielp6f8npjxds
Warawa
0
2445
10156
2026-04-02T09:51:50Z
Zahraswaty
193
Created page with "'''Warawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10156
wikitext
text/x-wiki
'''Warawa''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
gbaehodcn70arl3fd4qu4rqs4n2c80c
Wudil
0
2446
10157
2026-04-02T09:52:42Z
Zahraswaty
193
Created page with "'''Wudil''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]]. {{Kanàu}}"
10157
wikitext
text/x-wiki
'''Wudil''' nanta tòotai ma hukuma ne mà [[Kanàu]] à ƴal tà [[Lanjèeriya]].
{{Kanàu}}
61ofuzfswaexdhk5qj1syhmvzy7mjje