Wikipèdiya
kaiwiki
https://kai.wikipedia.org/wiki/Sh%C3%A0fi_Maiw%C3%A0a
MediaWiki 1.46.0-wmf.24
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:Infobox
828
55
11933
9629
2026-04-22T19:29:43Z
De-Invincible
36
11933
Scribunto
text/plain
local p = {}
local args = {}
local origArgs = {}
local root
local empty_row_categories = {}
local category_in_empty_row_pattern = '%[%[%s*[Kk][Aa][Tt][Ee][Qq][Oo][Rr][İi][Yy][Aa]%s*:[^]]*]]'
local has_rows = false
local lists = {
plainlist_t = {
patterns = {
'^plainlist$',
'%splainlist$',
'^plainlist%s',
'%splainlist%s'
},
found = false,
styles = 'Plainlist/styles.css'
},
hlist_t = {
patterns = {
'^hlist$',
'%shlist$',
'^hlist%s',
'%shlist%s'
},
found = false,
styles = 'Hlist/styles.css'
}
}
local function has_list_class(args_to_check)
for _, list in pairs(lists) do
if not list.found then
for _, arg in pairs(args_to_check) do
for _, pattern in ipairs(list.patterns) do
if mw.ustring.find(arg or '', pattern) then
list.found = true
break
end
end
if list.found then break end
end
end
end
end
local function fixChildBoxes(sval, tt)
local function notempty( s ) return s and s:match( '%S' ) end
if notempty(sval) then
local marker = '<span class=special_infobox_marker>'
local s = sval
-- start moving templatestyles and categories inside of table rows
local slast = ''
while slast ~= s do
slast = s
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*%]%])', '%2%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)', '%2%1')
end
-- end moving templatestyles and categories inside of table rows
s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker)
if s:match(marker) then
s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '')
s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1')
s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1')
s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1')
end
if s:match(marker) then
local subcells = mw.text.split(s, marker)
s = ''
for k = 1, #subcells do
if k == 1 then
s = s .. subcells[k] .. '</' .. tt .. '></tr>'
elseif k == #subcells then
local rowstyle = ' style="display:none"'
if notempty(subcells[k]) then rowstyle = '' end
s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' ..
subcells[k]
elseif notempty(subcells[k]) then
if (k % 2) == 0 then
s = s .. subcells[k]
else
s = s .. '<tr><' .. tt .. ' colspan=2>\n' ..
subcells[k] .. '</' .. tt .. '></tr>'
end
end
end
end
-- the next two lines add a newline at the end of lists for the PHP parser
-- [[Special:Diff/849054481]]
-- remove when [[:phab:T191516]] is fixed or OBE
s = mw.ustring.gsub(s, '([\r\n][%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:])', '\n%1')
s = mw.ustring.gsub(s, '^(%{%|)', '\n%1')
return s
else
return sval
end
end
-- Cleans empty tables
local function cleanInfobox()
root = tostring(root)
if has_rows == false then
root = mw.ustring.gsub(root, '<table[^<>]*>%s*</table>', '')
end
end
-- Returns the union of the values of two tables, as a sequence.
local function union(t1, t2)
local vals = {}
for k, v in pairs(t1) do
vals[v] = true
end
for k, v in pairs(t2) do
vals[v] = true
end
local ret = {}
for k, v in pairs(vals) do
table.insert(ret, k)
end
return ret
end
-- Returns a table containing the numbers of the arguments that exist
-- for the specified prefix. For example, if the prefix was 'data', and
-- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}.
local function getArgNums(prefix)
local nums = {}
for k, v in pairs(args) do
local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
if num then table.insert(nums, tonumber(num)) end
end
table.sort(nums)
return nums
end
-- Adds a row to the infobox, with either a header cell
-- or a label/data cell combination.
local function addRow(rowArgs)
if rowArgs.header and rowArgs.header ~= '_BLANK_' then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class, args.headerclass })
root
:tag('tr')
:addClass(rowArgs.rowclass)
:cssText(rowArgs.rowstyle)
:tag('th')
:attr('colspan', '2')
:addClass('infobox-header')
:addClass(rowArgs.class)
:addClass(args.headerclass)
-- @deprecated next; target .infobox-<name> .infobox-header
:cssText(args.headerstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.header, 'th'))
if rowArgs.data then
root:wikitext(
'[[Category:Pages using infobox templates with ignored data cells]]'
)
end
elseif rowArgs.data and rowArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class })
local row = root:tag('tr')
row:addClass(rowArgs.rowclass)
row:cssText(rowArgs.rowstyle)
if rowArgs.label then
row
:tag('th')
:attr('scope', 'row')
:addClass('infobox-label')
-- @deprecated next; target .infobox-<name> .infobox-label
:cssText(args.labelstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(rowArgs.label)
:done()
end
local dataCell = row:tag('td')
dataCell
:attr('colspan', not rowArgs.label and '2' or nil)
:addClass(not rowArgs.label and 'infobox-full-data' or 'infobox-data')
:addClass(rowArgs.class)
-- @deprecated next; target .infobox-<name> .infobox(-full)-data
:cssText(rowArgs.datastyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.data, 'td'))
else
table.insert(empty_row_categories, rowArgs.data or '')
end
end
local function renderTitle()
if not args.title then return end
has_rows = true
has_list_class({args.titleclass})
root
:tag('caption')
:addClass('infobox-title')
:addClass(args.titleclass)
-- @deprecated next; target .infobox-<name> .infobox-title
:cssText(args.titlestyle)
:wikitext(args.title)
end
local function renderAboveRow()
if not args.above then return end
has_rows = true
has_list_class({ args.aboveclass })
root
:tag('tr')
:tag('th')
:attr('colspan', '2')
:addClass('infobox-above')
:addClass(args.aboveclass)
-- @deprecated next; target .infobox-<name> .infobox-above
:cssText(args.abovestyle)
:wikitext(fixChildBoxes(args.above,'th'))
end
local function renderBelowRow()
if not args.below then return end
has_rows = true
has_list_class({ args.belowclass })
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-below')
:addClass(args.belowclass)
-- @deprecated next; target .infobox-<name> .infobox-below
:cssText(args.belowstyle)
:wikitext(fixChildBoxes(args.below,'td'))
end
local function addSubheaderRow(subheaderArgs)
if subheaderArgs.data and
subheaderArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ subheaderArgs.rowclass, subheaderArgs.class })
local row = root:tag('tr')
row:addClass(subheaderArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-subheader')
:addClass(subheaderArgs.class)
:cssText(subheaderArgs.datastyle)
:cssText(subheaderArgs.rowcellstyle)
:wikitext(fixChildBoxes(subheaderArgs.data, 'td'))
else
table.insert(empty_row_categories, subheaderArgs.data or '')
end
end
local function renderSubheaders()
if args.subheader then
args.subheader1 = args.subheader
end
if args.subheaderrowclass then
args.subheaderrowclass1 = args.subheaderrowclass
end
local subheadernums = getArgNums('subheader')
for k, num in ipairs(subheadernums) do
addSubheaderRow({
data = args['subheader' .. tostring(num)],
-- @deprecated next; target .infobox-<name> .infobox-subheader
datastyle = args.subheaderstyle,
rowcellstyle = args['subheaderstyle' .. tostring(num)],
class = args.subheaderclass,
rowclass = args['subheaderrowclass' .. tostring(num)]
})
end
end
local function addImageRow(imageArgs)
if imageArgs.data and
imageArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ imageArgs.rowclass, imageArgs.class })
local row = root:tag('tr')
row:addClass(imageArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-image')
:addClass(imageArgs.class)
:cssText(imageArgs.datastyle)
:wikitext(fixChildBoxes(imageArgs.data, 'td'))
else
table.insert(empty_row_categories, imageArgs.data or '')
end
end
local function renderImages()
if args.image then
args.image1 = args.image
end
if args.caption then
args.caption1 = args.caption
end
local imagenums = getArgNums('image')
for k, num in ipairs(imagenums) do
local caption = args['caption' .. tostring(num)]
local data = mw.html.create():wikitext(args['image' .. tostring(num)])
if caption then
data
:tag('div')
:addClass('infobox-caption')
-- @deprecated next; target .infobox-<name> .infobox-caption
:cssText(args.captionstyle)
:wikitext(caption)
end
addImageRow({
data = tostring(data),
-- @deprecated next; target .infobox-<name> .infobox-image
datastyle = args.imagestyle,
class = args.imageclass,
rowclass = args['imagerowclass' .. tostring(num)]
})
end
end
-- When autoheaders are turned on, preprocesses the rows
local function preprocessRows()
if not args.autoheaders then return end
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
local lastheader
for k, num in ipairs(rownums) do
if args['header' .. tostring(num)] then
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
lastheader = num
elseif args['data' .. tostring(num)] and
args['data' .. tostring(num)]:gsub(
category_in_empty_row_pattern, ''
):match('^%S') then
local data = args['data' .. tostring(num)]
if data:gsub(category_in_empty_row_pattern, ''):match('%S') then
lastheader = nil
end
end
end
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
end
-- Gets the union of the header and data argument numbers,
-- and renders them all in order
local function renderRows()
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
for k, num in ipairs(rownums) do
addRow({
header = args['header' .. tostring(num)],
label = args['label' .. tostring(num)],
data = args['data' .. tostring(num)],
datastyle = args.datastyle,
class = args['class' .. tostring(num)],
rowclass = args['rowclass' .. tostring(num)],
-- @deprecated next; target .infobox-<name> rowclass
rowstyle = args['rowstyle' .. tostring(num)],
rowcellstyle = args['rowcellstyle' .. tostring(num)]
})
end
end
local function renderNavBar()
if not args.name then return end
has_rows = true
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-navbar')
:wikitext(require('Module:Navbar')._navbar{
args.name,
mini = 1,
})
end
local function renderItalicTitle()
local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title'])
if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then
root:wikitext(require('Module:Italic title')._main({}))
end
end
-- Categories in otherwise empty rows are collected in empty_row_categories.
-- This function adds them to the module output. It is not affected by
-- args.decat because this module should not prevent module-external categories
-- from rendering.
local function renderEmptyRowCategories()
for _, s in ipairs(empty_row_categories) do
root:wikitext(s)
end
end
-- Render tracking categories. args.decat == turns off tracking categories.
local function renderTrackingCategories()
if args.decat == 'yes' then return end
if args.child == 'yes' then
if args.title then
root:wikitext(
'[[Category:Pages using embedded infobox templates with the title parameter]]'
)
end
elseif #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then
root:wikitext('[[Category:Articles using infobox templates with no data rows]]')
end
end
--[=[
Loads the templatestyles for the infobox.
TODO: FINISH loading base templatestyles here rather than in
MediaWiki:Common.css. There are 4-5000 pages with 'raw' infobox tables.
See [[Mediawiki_talk:Common.css/to_do#Infobox]] and/or come help :).
When we do this we should clean up the inline CSS below too.
Will have to do some bizarre conversion category like with sidebar.
]=]
local function loadTemplateStyles()
local frame = mw.getCurrentFrame()
local hlist_templatestyles = ''
if lists.hlist_t.found then
hlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.hlist_t.styles }
}
end
local plainlist_templatestyles = ''
if lists.plainlist_t.found then
plainlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.plainlist_t.styles }
}
end
-- See function description
local base_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = 'Module:Infobox/styles.css' }
}
local templatestyles = ''
if args['templatestyles'] then
templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['templatestyles'] }
}
end
local child_templatestyles = ''
if args['child templatestyles'] then
child_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['child templatestyles'] }
}
end
local grandchild_templatestyles = ''
if args['grandchild templatestyles'] then
grandchild_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['grandchild templatestyles'] }
}
end
return table.concat({
-- hlist -> plainlist -> base is best-effort to preserve old Common.css ordering.
-- this ordering is not a guarantee because the rows of interest invoking
-- each class may not be on a specific page
hlist_templatestyles,
plainlist_templatestyles,
base_templatestyles,
templatestyles,
child_templatestyles,
grandchild_templatestyles
})
end
-- common functions between the child and non child cases
local function structure_infobox_common()
renderSubheaders()
renderImages()
preprocessRows()
renderRows()
renderBelowRow()
renderNavBar()
renderItalicTitle()
renderEmptyRowCategories()
renderTrackingCategories()
cleanInfobox()
end
-- Specify the overall layout of the infobox, with special settings if the
-- infobox is used as a 'child' inside another infobox.
local function _infobox()
if args.child ~= 'yes' then
root = mw.html.create('table')
root
:addClass(args.subbox == 'yes' and 'infobox-subbox' or 'infobox')
:addClass(args.bodyclass)
-- @deprecated next; target .infobox-<name>
:cssText(args.bodystyle)
has_list_class({ args.bodyclass })
renderTitle()
renderAboveRow()
else
root = mw.html.create()
root
:wikitext(args.title)
end
structure_infobox_common()
return loadTemplateStyles() .. root
end
-- If the argument exists and isn't blank, add it to the argument table.
-- Blank arguments are treated as nil to match the behaviour of ParserFunctions.
local function preprocessSingleArg(argName)
if origArgs[argName] and origArgs[argName] ~= '' then
args[argName] = origArgs[argName]
end
end
-- Assign the parameters with the given prefixes to the args table, in order, in
-- batches of the step size specified. This is to prevent references etc. from
-- appearing in the wrong order. The prefixTable should be an array containing
-- tables, each of which has two possible fields, a "prefix" string and a
-- "depend" table. The function always parses parameters containing the "prefix"
-- string, but only parses parameters in the "depend" table if the prefix
-- parameter is present and non-blank.
local function preprocessArgs(prefixTable, step)
if type(prefixTable) ~= 'table' then
error("Non-table value detected for the prefix table", 2)
end
if type(step) ~= 'number' then
error("Invalid step value detected", 2)
end
-- Get arguments without a number suffix, and check for bad input.
for i,v in ipairs(prefixTable) do
if type(v) ~= 'table' or type(v.prefix) ~= "string" or
(v.depend and type(v.depend) ~= 'table') then
error('Invalid input detected to preprocessArgs prefix table', 2)
end
preprocessSingleArg(v.prefix)
-- Only parse the depend parameter if the prefix parameter is present
-- and not blank.
if args[v.prefix] and v.depend then
for j, dependValue in ipairs(v.depend) do
if type(dependValue) ~= 'string' then
error('Invalid "depend" parameter value detected in preprocessArgs')
end
preprocessSingleArg(dependValue)
end
end
end
-- Get arguments with number suffixes.
local a = 1 -- Counter variable.
local moreArgumentsExist = true
while moreArgumentsExist == true do
moreArgumentsExist = false
for i = a, a + step - 1 do
for j,v in ipairs(prefixTable) do
local prefixArgName = v.prefix .. tostring(i)
if origArgs[prefixArgName] then
-- Do another loop if any arguments are found, even blank ones.
moreArgumentsExist = true
preprocessSingleArg(prefixArgName)
end
-- Process the depend table if the prefix argument is present
-- and not blank, or we are processing "prefix1" and "prefix" is
-- present and not blank, and if the depend table is present.
if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then
for j,dependValue in ipairs(v.depend) do
local dependArgName = dependValue .. tostring(i)
preprocessSingleArg(dependArgName)
end
end
end
end
a = a + step
end
end
-- Parse the data parameters in the same order that the old {{infobox}} did, so
-- that references etc. will display in the expected places. Parameters that
-- depend on another parameter are only processed if that parameter is present,
-- to avoid phantom references appearing in article reference lists.
local function parseDataParameters()
preprocessSingleArg('autoheaders')
preprocessSingleArg('child')
preprocessSingleArg('bodyclass')
preprocessSingleArg('subbox')
preprocessSingleArg('bodystyle')
preprocessSingleArg('title')
preprocessSingleArg('titleclass')
preprocessSingleArg('titlestyle')
preprocessSingleArg('above')
preprocessSingleArg('aboveclass')
preprocessSingleArg('abovestyle')
preprocessArgs({
{prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}}
}, 10)
preprocessSingleArg('subheaderstyle')
preprocessSingleArg('subheaderclass')
preprocessArgs({
{prefix = 'image', depend = {'caption', 'imagerowclass'}}
}, 10)
preprocessSingleArg('captionstyle')
preprocessSingleArg('imagestyle')
preprocessSingleArg('imageclass')
preprocessArgs({
{prefix = 'header'},
{prefix = 'data', depend = {'label'}},
{prefix = 'rowclass'},
{prefix = 'rowstyle'},
{prefix = 'rowcellstyle'},
{prefix = 'class'}
}, 50)
preprocessSingleArg('headerclass')
preprocessSingleArg('headerstyle')
preprocessSingleArg('labelstyle')
preprocessSingleArg('datastyle')
preprocessSingleArg('below')
preprocessSingleArg('belowclass')
preprocessSingleArg('belowstyle')
preprocessSingleArg('name')
-- different behaviour for italics if blank or absent
args['italic title'] = origArgs['italic title']
preprocessSingleArg('decat')
preprocessSingleArg('templatestyles')
preprocessSingleArg('child templatestyles')
preprocessSingleArg('grandchild templatestyles')
end
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
function p.infobox(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
parseDataParameters()
return _infobox()
end
-- For calling via #invoke within a template
function p.infoboxTemplate(frame)
origArgs = {}
for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end
parseDataParameters()
return _infobox()
end
return p
q7lrelil9e3gn1awcsmitaachdplsz8
12030
11933
2026-04-23T05:53:08Z
De-Invincible
36
Undid revision [[Special:Diff/11933|11933]] by [[Special:Contributions/De-Invincible|De-Invincible]] ([[User talk:De-Invincible|talk]])
12030
Scribunto
text/plain
local p = {}
local args = {}
local origArgs = {}
local root
local empty_row_categories = {}
local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]'
local has_rows = false
local lists = {
plainlist_t = {
patterns = {
'^plainlist$',
'%splainlist$',
'^plainlist%s',
'%splainlist%s'
},
found = false,
styles = 'Plainlist/styles.css'
},
hlist_t = {
patterns = {
'^hlist$',
'%shlist$',
'^hlist%s',
'%shlist%s'
},
found = false,
styles = 'Hlist/styles.css'
}
}
local function has_list_class(args_to_check)
for _, list in pairs(lists) do
if not list.found then
for _, arg in pairs(args_to_check) do
for _, pattern in ipairs(list.patterns) do
if mw.ustring.find(arg or '', pattern) then
list.found = true
break
end
end
if list.found then break end
end
end
end
end
local function fixChildBoxes(sval, tt)
local function notempty( s ) return s and s:match( '%S' ) end
if notempty(sval) then
local marker = '<span class=special_infobox_marker>'
local s = sval
-- start moving templatestyles and categories inside of table rows
local slast = ''
while slast ~= s do
slast = s
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*%]%])', '%2%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)', '%2%1')
end
-- end moving templatestyles and categories inside of table rows
s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker)
if s:match(marker) then
s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '')
s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1')
s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1')
s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1')
end
if s:match(marker) then
local subcells = mw.text.split(s, marker)
s = ''
for k = 1, #subcells do
if k == 1 then
s = s .. subcells[k] .. '</' .. tt .. '></tr>'
elseif k == #subcells then
local rowstyle = ' style="display:none"'
if notempty(subcells[k]) then rowstyle = '' end
s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' ..
subcells[k]
elseif notempty(subcells[k]) then
if (k % 2) == 0 then
s = s .. subcells[k]
else
s = s .. '<tr><' .. tt .. ' colspan=2>\n' ..
subcells[k] .. '</' .. tt .. '></tr>'
end
end
end
end
-- the next two lines add a newline at the end of lists for the PHP parser
-- [[Spesyel:Diff/849054481]]
-- remove when [[:phab:T191516]] is fixed or OBE
s = mw.ustring.gsub(s, '([\r\n][%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:])', '\n%1')
s = mw.ustring.gsub(s, '^(%{%|)', '\n%1')
return s
else
return sval
end
end
-- Cleans empty tables
local function cleanInfobox()
root = tostring(root)
if has_rows == false then
root = mw.ustring.gsub(root, '<table[^<>]*>%s*</table>', '')
end
end
-- Returns the union of the values of two tables, as a sequence.
local function union(t1, t2)
local vals = {}
for k, v in pairs(t1) do
vals[v] = true
end
for k, v in pairs(t2) do
vals[v] = true
end
local ret = {}
for k, v in pairs(vals) do
table.insert(ret, k)
end
return ret
end
-- Returns a table containing the numbers of the arguments that exist
-- for the specified prefix. For example, if the prefix was 'data', and
-- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}.
local function getArgNums(prefix)
local nums = {}
for k, v in pairs(args) do
local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
if num then table.insert(nums, tonumber(num)) end
end
table.sort(nums)
return nums
end
-- Adds a row to the infobox, with either a header cell
-- or a label/data cell combination.
local function addRow(rowArgs)
if rowArgs.header and rowArgs.header ~= '_BLANK_' then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class, args.headerclass })
root
:tag('tr')
:addClass(rowArgs.rowclass)
:cssText(rowArgs.rowstyle)
:tag('th')
:attr('colspan', '2')
:addClass('infobox-header')
:addClass(rowArgs.class)
:addClass(args.headerclass)
-- @deprecated next; target .infobox-<name> .infobox-header
:cssText(args.headerstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.header, 'th'))
if rowArgs.data then
root:wikitext(
'[[Kategori:Pages using infobox templates with ignored data cells]]'
)
end
elseif rowArgs.data and rowArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class })
local row = root:tag('tr')
row:addClass(rowArgs.rowclass)
row:cssText(rowArgs.rowstyle)
if rowArgs.label then
row
:tag('th')
:attr('scope', 'row')
:addClass('infobox-label')
-- @deprecated next; target .infobox-<name> .infobox-label
:cssText(args.labelstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(rowArgs.label)
:done()
end
local dataCell = row:tag('td')
dataCell
:attr('colspan', not rowArgs.label and '2' or nil)
:addClass(not rowArgs.label and 'infobox-full-data' or 'infobox-data')
:addClass(rowArgs.class)
-- @deprecated next; target .infobox-<name> .infobox(-full)-data
:cssText(rowArgs.datastyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.data, 'td'))
else
table.insert(empty_row_categories, rowArgs.data or '')
end
end
local function renderTitle()
if not args.title then return end
has_rows = true
has_list_class({args.titleclass})
root
:tag('caption')
:addClass('infobox-title')
:addClass(args.titleclass)
-- @deprecated next; target .infobox-<name> .infobox-title
:cssText(args.titlestyle)
:wikitext(args.title)
end
local function renderAboveRow()
if not args.above then return end
has_rows = true
has_list_class({ args.aboveclass })
root
:tag('tr')
:tag('th')
:attr('colspan', '2')
:addClass('infobox-above')
:addClass(args.aboveclass)
-- @deprecated next; target .infobox-<name> .infobox-above
:cssText(args.abovestyle)
:wikitext(fixChildBoxes(args.above,'th'))
end
local function renderBelowRow()
if not args.below then return end
has_rows = true
has_list_class({ args.belowclass })
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-below')
:addClass(args.belowclass)
-- @deprecated next; target .infobox-<name> .infobox-below
:cssText(args.belowstyle)
:wikitext(fixChildBoxes(args.below,'td'))
end
local function addSubheaderRow(subheaderArgs)
if subheaderArgs.data and
subheaderArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ subheaderArgs.rowclass, subheaderArgs.class })
local row = root:tag('tr')
row:addClass(subheaderArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-subheader')
:addClass(subheaderArgs.class)
:cssText(subheaderArgs.datastyle)
:cssText(subheaderArgs.rowcellstyle)
:wikitext(fixChildBoxes(subheaderArgs.data, 'td'))
else
table.insert(empty_row_categories, subheaderArgs.data or '')
end
end
local function renderSubheaders()
if args.subheader then
args.subheader1 = args.subheader
end
if args.subheaderrowclass then
args.subheaderrowclass1 = args.subheaderrowclass
end
local subheadernums = getArgNums('subheader')
for k, num in ipairs(subheadernums) do
addSubheaderRow({
data = args['subheader' .. tostring(num)],
-- @deprecated next; target .infobox-<name> .infobox-subheader
datastyle = args.subheaderstyle,
rowcellstyle = args['subheaderstyle' .. tostring(num)],
class = args.subheaderclass,
rowclass = args['subheaderrowclass' .. tostring(num)]
})
end
end
local function addImageRow(imageArgs)
if imageArgs.data and
imageArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ imageArgs.rowclass, imageArgs.class })
local row = root:tag('tr')
row:addClass(imageArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-image')
:addClass(imageArgs.class)
:cssText(imageArgs.datastyle)
:wikitext(fixChildBoxes(imageArgs.data, 'td'))
else
table.insert(empty_row_categories, imageArgs.data or '')
end
end
local function renderImages()
if args.image then
args.image1 = args.image
end
if args.caption then
args.caption1 = args.caption
end
local imagenums = getArgNums('image')
for k, num in ipairs(imagenums) do
local caption = args['caption' .. tostring(num)]
local data = mw.html.create():wikitext(args['image' .. tostring(num)])
if caption then
data
:tag('div')
:addClass('infobox-caption')
-- @deprecated next; target .infobox-<name> .infobox-caption
:cssText(args.captionstyle)
:wikitext(caption)
end
addImageRow({
data = tostring(data),
-- @deprecated next; target .infobox-<name> .infobox-image
datastyle = args.imagestyle,
class = args.imageclass,
rowclass = args['imagerowclass' .. tostring(num)]
})
end
end
-- When autoheaders are turned on, preprocesses the rows
local function preprocessRows()
if not args.autoheaders then return end
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
local lastheader
for k, num in ipairs(rownums) do
if args['header' .. tostring(num)] then
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
lastheader = num
elseif args['data' .. tostring(num)] and
args['data' .. tostring(num)]:gsub(
category_in_empty_row_pattern, ''
):match('^%S') then
local data = args['data' .. tostring(num)]
if data:gsub(category_in_empty_row_pattern, ''):match('%S') then
lastheader = nil
end
end
end
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
end
-- Gets the union of the header and data argument numbers,
-- and renders them all in order
local function renderRows()
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
for k, num in ipairs(rownums) do
addRow({
header = args['header' .. tostring(num)],
label = args['label' .. tostring(num)],
data = args['data' .. tostring(num)],
datastyle = args.datastyle,
class = args['class' .. tostring(num)],
rowclass = args['rowclass' .. tostring(num)],
-- @deprecated next; target .infobox-<name> rowclass
rowstyle = args['rowstyle' .. tostring(num)],
rowcellstyle = args['rowcellstyle' .. tostring(num)]
})
end
end
local function renderNavBar()
if not args.name then return end
has_rows = true
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-navbar')
:wikitext(require('Module:Navbar')._navbar{
args.name,
mini = 1,
})
end
local function renderItalicTitle()
local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title'])
if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then
root:wikitext(require('Module:Italic title')._main({}))
end
end
-- Categories in otherwise empty rows are collected in empty_row_categories.
-- This function adds them to the module output. It is not affected by
-- args.decat because this module should not prevent module-external categories
-- from rendering.
local function renderEmptyRowCategories()
for _, s in ipairs(empty_row_categories) do
root:wikitext(s)
end
end
-- Render tracking categories. args.decat == turns off tracking categories.
local function renderTrackingCategories()
if args.decat == 'yes' then return end
if args.child == 'yes' then
if args.title then
root:wikitext(
'[[Kategori:Pages using embedded infobox templates with the title parameter]]'
)
end
elseif #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then
root:wikitext('[[Kategori:Articles using infobox templates with no data rows]]')
end
end
--[=[
Loads the templatestyles for the infobox.
TODO: FINISH loading base templatestyles here rather than in
MediaWiki:Common.css. There are 4-5000 pages with 'raw' infobox tables.
See [[Mediawiki_talk:Common.css/to_do#Infobox]] and/or come help :).
When we do this we should clean up the inline CSS below too.
Will have to do some bizarre conversion category like with sidebar.
]=]
local function loadTemplateStyles()
local frame = mw.getCurrentFrame()
local hlist_templatestyles = ''
if lists.hlist_t.found then
hlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.hlist_t.styles }
}
end
local plainlist_templatestyles = ''
if lists.plainlist_t.found then
plainlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.plainlist_t.styles }
}
end
-- See function description
local base_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = 'Module:Infobox/styles.css' }
}
local templatestyles = ''
if args['templatestyles'] then
templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['templatestyles'] }
}
end
local child_templatestyles = ''
if args['child templatestyles'] then
child_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['child templatestyles'] }
}
end
local grandchild_templatestyles = ''
if args['grandchild templatestyles'] then
grandchild_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['grandchild templatestyles'] }
}
end
return table.concat({
-- hlist -> plainlist -> base is best-effort to preserve old Common.css ordering.
-- this ordering is not a guarantee because the rows of interest invoking
-- each class may not be on a specific page
hlist_templatestyles,
plainlist_templatestyles,
base_templatestyles,
templatestyles,
child_templatestyles,
grandchild_templatestyles
})
end
-- common functions between the child and non child cases
local function structure_infobox_common()
renderSubheaders()
renderImages()
preprocessRows()
renderRows()
renderBelowRow()
renderNavBar()
renderItalicTitle()
renderEmptyRowCategories()
renderTrackingCategories()
cleanInfobox()
end
-- Specify the overall layout of the infobox, with special settings if the
-- infobox is used as a 'child' inside another infobox.
local function _infobox()
if args.child ~= 'yes' then
root = mw.html.create('table')
root
:addClass(args.subbox == 'yes' and 'infobox-subbox' or 'infobox')
:addClass(args.bodyclass)
-- @deprecated next; target .infobox-<name>
:cssText(args.bodystyle)
has_list_class({ args.bodyclass })
renderTitle()
renderAboveRow()
else
root = mw.html.create()
root
:wikitext(args.title)
end
structure_infobox_common()
return loadTemplateStyles() .. root
end
-- If the argument exists and isn't blank, add it to the argument table.
-- Blank arguments are treated as nil to match the behaviour of ParserFunctions.
local function preprocessSingleArg(argName)
if origArgs[argName] and origArgs[argName] ~= '' then
args[argName] = origArgs[argName]
end
end
-- Assign the parameters with the given prefixes to the args table, in order, in
-- batches of the step size specified. This is to prevent references etc. from
-- appearing in the wrong order. The prefixTable should be an array containing
-- tables, each of which has two possible fields, a "prefix" string and a
-- "depend" table. The function always parses parameters containing the "prefix"
-- string, but only parses parameters in the "depend" table if the prefix
-- parameter is present and non-blank.
local function preprocessArgs(prefixTable, step)
if type(prefixTable) ~= 'table' then
error("Non-table value detected for the prefix table", 2)
end
if type(step) ~= 'number' then
error("Invalid step value detected", 2)
end
-- Get arguments without a number suffix, and check for bad input.
for i,v in ipairs(prefixTable) do
if type(v) ~= 'table' or type(v.prefix) ~= "string" or
(v.depend and type(v.depend) ~= 'table') then
error('Invalid input detected to preprocessArgs prefix table', 2)
end
preprocessSingleArg(v.prefix)
-- Only parse the depend parameter if the prefix parameter is present
-- and not blank.
if args[v.prefix] and v.depend then
for j, dependValue in ipairs(v.depend) do
if type(dependValue) ~= 'string' then
error('Invalid "depend" parameter value detected in preprocessArgs')
end
preprocessSingleArg(dependValue)
end
end
end
-- Get arguments with number suffixes.
local a = 1 -- Counter variable.
local moreArgumentsExist = true
while moreArgumentsExist == true do
moreArgumentsExist = false
for i = a, a + step - 1 do
for j,v in ipairs(prefixTable) do
local prefixArgName = v.prefix .. tostring(i)
if origArgs[prefixArgName] then
-- Do another loop if any arguments are found, even blank ones.
moreArgumentsExist = true
preprocessSingleArg(prefixArgName)
end
-- Process the depend table if the prefix argument is present
-- and not blank, or we are processing "prefix1" and "prefix" is
-- present and not blank, and if the depend table is present.
if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then
for j,dependValue in ipairs(v.depend) do
local dependArgName = dependValue .. tostring(i)
preprocessSingleArg(dependArgName)
end
end
end
end
a = a + step
end
end
-- Parse the data parameters in the same order that the old {{infobox}} did, so
-- that references etc. will display in the expected places. Parameters that
-- depend on another parameter are only processed if that parameter is present,
-- to avoid phantom references appearing in article reference lists.
local function parseDataParameters()
preprocessSingleArg('autoheaders')
preprocessSingleArg('child')
preprocessSingleArg('bodyclass')
preprocessSingleArg('subbox')
preprocessSingleArg('bodystyle')
preprocessSingleArg('title')
preprocessSingleArg('titleclass')
preprocessSingleArg('titlestyle')
preprocessSingleArg('above')
preprocessSingleArg('aboveclass')
preprocessSingleArg('abovestyle')
preprocessArgs({
{prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}}
}, 10)
preprocessSingleArg('subheaderstyle')
preprocessSingleArg('subheaderclass')
preprocessArgs({
{prefix = 'image', depend = {'caption', 'imagerowclass'}}
}, 10)
preprocessSingleArg('captionstyle')
preprocessSingleArg('imagestyle')
preprocessSingleArg('imageclass')
preprocessArgs({
{prefix = 'header'},
{prefix = 'data', depend = {'label'}},
{prefix = 'rowclass'},
{prefix = 'rowstyle'},
{prefix = 'rowcellstyle'},
{prefix = 'class'}
}, 50)
preprocessSingleArg('headerclass')
preprocessSingleArg('headerstyle')
preprocessSingleArg('labelstyle')
preprocessSingleArg('datastyle')
preprocessSingleArg('below')
preprocessSingleArg('belowclass')
preprocessSingleArg('belowstyle')
preprocessSingleArg('name')
-- different behaviour for italics if blank or absent
args['italic title'] = origArgs['italic title']
preprocessSingleArg('decat')
preprocessSingleArg('templatestyles')
preprocessSingleArg('child templatestyles')
preprocessSingleArg('grandchild templatestyles')
end
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
function p.infobox(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
parseDataParameters()
return _infobox()
end
-- For calling via #invoke within a template
function p.infoboxTemplate(frame)
origArgs = {}
for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end
parseDataParameters()
return _infobox()
end
return p
jiwfcumhdal2brqc713m1dan0y14edw
Tampilet:Gregorian serial date
10
238
11993
840
2026-04-23T03:33:22Z
Pppery
272
On Wikidata
11993
wikitext
text/x-wiki
<noinclude>
{{pp-template}}
This template gives the [[Gregorian calendar|Gregorian]] serial day. This is the numbers of days from the start of 1 A.D. (Monday, 1 Jan 1 = 1). (In the Gregorian Calendar there is no year 0) This template should handle all leap year exceptions including the 100 and 400 year rule. By default this template gives the serial for today. To find the serial for another date fill in the date into this code: '''<nowiki>{{Gregorian serial date|month = |day = |year = }}</nowiki>
'''Today's Date is'''
</noinclude>{{#expr:
<!--Days from all years past:-->
+ (({{{year|{{CURRENTYEAR}}}}} - 1) * 365)
+ ((({{{year|{{CURRENTYEAR}}}}} - 1) - (({{{year|{{CURRENTYEAR}}}}} - 1) mod 4)) / 4) <!--add a day for every leap-->
- ((({{{year|{{CURRENTYEAR}}}}} - 1) - (({{{year|{{CURRENTYEAR}}}}} - 1) mod 100)) / 100) <!--subtract 100 year exception-->
+ ((({{{year|{{CURRENTYEAR}}}}} - 1) - (({{{year|{{CURRENTYEAR}}}}} - 1) mod 400)) / 400) <!--readd 400 year exception-->
<!--Days so far this year:-->
+ {{ #ifexpr: <!--add days for past months this year--> <!--Gives 1 or 2 extra days because of February-->
({{{month|{{CURRENTMONTH}}}}} - 1) < 8
| ( ({{{month|{{CURRENTMONTH}}}}} - 1) * 30.5 round 0)
| ( ({{{month|{{CURRENTMONTH}}}}} - 1) * 30.5 + 0.9 round 0 )
}}
- {{ #ifexpr: ({{{month|{{CURRENTMONTH}}}}} <= 2) | 0 |
{{ #ifexpr: <!-- if leap year -->
({{{year|{{CURRENTYEAR}}}}} / 4) = ({{{year|{{CURRENTYEAR}}}}} / 4 round 0) <!--If divisible by 4-->
and ({{{year|{{CURRENTYEAR}}}}} / 100 != {{{year|{{CURRENTYEAR}}}}} / 100 round 0) <!--and not by 100-->
| 1 | 2
}}
}}
+ {{ #ifexpr: ({{{month|{{CURRENTMONTH}}}}} <= 2) | 0 |
{{ #ifexpr: <!--400 year exception-->
({{{year|{{CURRENTYEAR}}}}} / 400) = ({{{year|{{CURRENTYEAR}}}}} / 400 round 0)
| 1 | 0
}}
}}
+ {{{day|{{CURRENTDAY}}}}}
}}{{#ifexpr: {{{year|{{CURRENTYEAR}}}}} < 1 |
_ERROR - Can not handle dates before January 1, 1 A.D.
}}<noinclude>
*<nowiki>{{gsd|year=1|month=1|day=1}}</nowiki> gives {{gsd|year=1|month=1|day=1}}
*<nowiki>{{gsd|year=2000|month=12|day=31}}</nowiki> gives {{gsd|year=2000|month=12|day=31}} (5 times the number of days of a cycle, 146,097)
*<nowiki>{{gsd|year=2000|month=1|day=1}}</nowiki> gives {{gsd|year=2000|month=1|day=1}}
*<nowiki>{{gsd|year=2001|month=1|day=1}}</nowiki> gives {{gsd|year=2001|month=1|day=1}}
*<nowiki>{{gsd|year=2001|month=2|day=28}}</nowiki> gives {{gsd|year=2001|month=2|day=28}}
*<nowiki>{{gsd|year=2001|month=3|day=1}}</nowiki> gives {{gsd|year=2001|month=3|day=1}}
See also:
*{{tiw|JULIANDAY}}
*{{tim|gsd}}
*{{tim|YMD2MJD}}
</noinclude>
j4p0gygy1iwxy6djiz1a7xosu8xmem1
Tampilet:Increase
10
256
11994
894
2026-04-23T03:33:53Z
Pppery
272
On Wikidata
11994
wikitext
text/x-wiki
[[Payìil:Increase2.svg|11px]]
etwui9j5bxsbg4oskvurhfj85v9bowu
Tampilet:Infobox
10
259
11935
901
2026-04-22T19:40:32Z
De-Invincible
36
11935
wikitext
text/x-wiki
<includeonly>{{#if:{{{name|}}}|{{#ifeq:{{{name|}}}|-||{{#if:{{{color|}}}|{{#tag:templatestyles|
|wrapper=.infobox-{{#invoke:Hash|main|{{{name}}} {{{above0|}}} {{{above|}}} {{{above2|}}}}}
|src=Template:Color/{{{color|}}}.css
}}}}}}}}<table class="infobox infobox-{{#invoke:Hash|main|{{{name}}} {{{above0|}}} {{{above|}}} {{{above2|}}}}} {{{bodyclass|}}}" style="{{{bodystyle|}}}" {{#if:{{{name|{{{ad|}}}}}}|{{#ifeq:{{{name|{{{ad|}}}}}}|-||data-name="{{{name}}}{{{ad||}}}"}}}} {{#if:{{{from|}}}|{{#ifeq:{{{from|}}}|-||data-from="{{{from}}}"}}}}>{{#if:{{{above0|}}}|<tr><td colspan="2" class="{{{aboveclass0|}}}" style="text-align:center; {{{abovestyle0|}}}">{{{above0}}}</td></tr>}}{{#if:{{{above|}}}|<tr><th colspan="2" scope="colgroup" class="infobox-above {{{aboveclass|}}}" style="{{{abovestyle|}}}">{{{above}}}</th></tr>}}{{#if:{{{above2|}}}|<tr><td colspan="2" class="{{{aboveclass2|}}}" style="text-align:center; {{{abovestyle2|}}}">{{{above2}}}</td></tr>}}{{#if:{{{above3|}}}|<tr><td colspan="2" class="{{{aboveclass3|}}}" style="text-align:center; {{{abovestyle3|}}}">{{{above3}}}</td></tr>}}{{#if:{{{image|}}}|<tr><td colspan="2" class="infobox-image {{{imageclass|}}}" style="{{{imagestyle|}}}"> {{{image}}} {{#if:{{{caption|}}}|
<div class="media-caption" style="{{{captionstyle|}}}">{{{caption}}}</div>}}</td></tr>}}{{#if:{{{image2|}}}|<tr><td colspan="2" class="infobox-image {{{imageclass2|}}}" style="{{{imagestyle2|}}}"> {{{image2}}} {{#if:{{{caption2|}}}|
<div class="media-caption" style="{{{captionstyle2|}}}">{{{caption2}}}</div>}}</td></tr>}}{{#if:{{{image3|}}}|<tr><td colspan="2" class="infobox-image {{{imageclass3|}}}" style="{{{imagestyle3|}}}"> {{{image3}}} {{#if:{{{caption3|}}}|
<div class="media-caption" style="{{{captionstyle3|}}}">{{{caption3}}}</div>}}</td></tr>}}{{#if:{{{image4|}}}|<tr><td colspan="2" class="infobox-image {{{imageclass4|}}}" style="{{{imagestyle4|}}}"> {{{image4}}} {{#if:{{{caption4|}}}|
<div class="media-caption" style="{{{captionstyle4|}}}">{{{caption4}}}</div>}}</td></tr>}}{{#invoke: Infobox|infobox}}{{Infobox/below
| total below style = {{{belowstyle|}}}
| below class = {{{belowclass|}}}
| below = {{{below|}}}
}}
</table>{{#if:{{NAMESPACE}}||{{#if:{{{name|{{{ad|}}}}}}||[[Category:Articles with nameless infobox templates]]}}{{#ifeq:{{{name|{{{ad|}}}}}}|{{subst:PAGENAME}}|[[Category:Articles with nameless infobox templates]]}}}}{{#ifeq:{{NAMESPACENUMBER}}|10|{{#if:{{{name|{{{ad|}}}}}}||[[Category:Nameless infobox templates]]}}{{#ifeq:{{{name|{{{ad|}}}}}}|{{subst:PAGENAME}}|[[Category:Nameless infobox templates]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{bodystyle||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{abovestyle||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{abovestyle2||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{abovestyle3||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{captionstyle||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{captionstyle2||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{captionstyle3||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{headerstyle||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{labelstyle||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{datastyle||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifexpr:{{#invoke:Color_contrast|styleratio|{{{belowstyle||}}}}} < 4.5|[[Category:Potentially unreadable infoboxes]]}}{{#ifeq:{{{name|{{{ad||}}}}}}|{{PAGENAME}}|[[Category:Infobox templates in alphabetical order|{{ucfirst:{{#rel2abs:{{PAGENAME}}|Infobox }}}}]]}}}}</includeonly><noinclude>{{doc}}</noinclude>
fpnrp64loluc5of2lh4ce9ayj6w34d0
11939
11935
2026-04-22T20:01:46Z
De-Invincible
36
Undid revision [[Special:Diff/11935|11935]] by [[Special:Contributions/De-Invincible|De-Invincible]] ([[User talk:De-Invincible|talk]])
11939
wikitext
text/x-wiki
{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|[[Sashì:Infobox templates|{{remove first word|{{SUBPAGENAME}}}}]]}}}}|}}</includeonly><noinclude>
{{documentation}}
</noinclude>
f664os2jtq4thqu7flxxqdbz4qnp223
Tampilet:Infobox animal
10
262
12132
10804
2026-04-23T11:06:21Z
De-Invincible
36
12132
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox person/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Lion of Judah depicted by the drawing of a lion face.png}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{{name|{{PAGENAME}}}}} </div></div>
{{#if: {{{breed|}}}{{{species|}}} |<div class="custom-infobox-subheader">{{#if: {{{breed|}}} | {{{breed}}} | {{{species}}} }}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{species|}}}{{{breed|}}}{{{sex|}}}{{{othername|}}}{{{namedafter|}}} |<div class="custom-infobox-section-header">Biological details</div>}}{{#if: {{{othername|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other names:</div><div class="custom-infobox-data">{{{othername}}}</div></div> }}{{#if: {{{species|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Species:</div><div class="custom-infobox-data">{{{species}}}</div></div> }}{{#if: {{{breed|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Breed:</div><div class="custom-infobox-data">{{{breed}}}</div></div> }}{{#if: {{{sex|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Sex:</div><div class="custom-infobox-data">{{{sex}}}</div></div> }}{{#if: {{{namedafter|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Named after:</div><div class="custom-infobox-data">{{{namedafter}}}</div></div> }}
{{#if: {{{birth_date|}}}{{{birth_name|}}}{{{hatch_date|}}}{{{death_date|}}}{{{resting_place|}}} |<div class="custom-infobox-section-header">Life and history</div>}}{{#if: {{{birth_name|}}}{{{hatch_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name|}}}{{{hatch_name|}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}}{{{hatch_date|}}}{{{hatch_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born/Hatched:</div><div class="custom-infobox-data">{{{birth_date|}}}{{{hatch_date|}}}{{#if: {{{birth_place|}}}{{{hatch_place|}}} | <br>{{{birth_place|}}}{{{hatch_place|}}} }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}
{{#if: {{{occupation|}}}{{{role|}}}{{{known_for|}}}{{{tricks|}}}{{{awards|}}}{{{title|}}} |<div class="custom-infobox-section-header">Career</div>}}{{#if: {{{occupation|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Occupation:</div><div class="custom-infobox-data">{{{occupation}}}</div></div> }}{{#if: {{{employer|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Employer:</div><div class="custom-infobox-data">{{{employer}}}</div></div> }}{{#if: {{{role|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Role:</div><div class="custom-infobox-data">{{{role}}}</div></div> }}{{#if: {{{years_active|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Years active:</div><div class="custom-infobox-data">{{{years_active}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{tricks|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Tricks:</div><div class="custom-infobox-data">{{{tricks}}}</div></div> }}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}{{#if: {{{title|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Title:</div><div class="custom-infobox-data">{{{title}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Predecessor:</div><div class="custom-infobox-data">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Successor:</div><div class="custom-infobox-data">{{{successor}}}</div></div> }}
{{#if: {{{weight|}}}{{{height|}}}{{{appearance|}}} |<div class="custom-infobox-section-header">Characteristics</div>}}{{#if: {{{weight|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Weight:</div><div class="custom-infobox-data">{{{weight}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{appearance|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Appearance:</div><div class="custom-infobox-data">{{{appearance}}}</div></div> }}
{{#if: {{{owner|}}}{{{residence|}}}{{{parents|}}}{{{mate|}}}{{{children|}}} |<div class="custom-infobox-section-header">Relations</div>}}{{#if: {{{owner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Owner:</div><div class="custom-infobox-data">{{{owner}}}</div></div> }}{{#if: {{{residence|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Residence:</div><div class="custom-infobox-data">{{{residence}}}</div></div> }}{{#if: {{{parents|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parents:</div><div class="custom-infobox-data">{{{parents}}}</div></div> }}{{#if: {{{mate|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Mate:</div><div class="custom-infobox-data">{{{mate}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}
{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox animal
| name =
| icon =
| image =
| image_upright =
| landscape =
| alt =
| caption =
| othername =
| species =
| breed =
| sex =
| birth_name =
| birth_date =
| birth_place =
| hatch_name =
| hatch_date =
| hatch_place =
| death_date =
| death_place =
| death_cause =
| resting_place =
| resting_place_coordinates =
| nationality =
| occupation =
| employer =
| role =
| years_active =
| known_for =
| tricks =
| awards =
| title =
| term =
| predecessor =
| successor =
| owner =
| residence =
| parents =
| mate =
| children =
| weight =
| height =
| appearance =
| namedafter =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| website =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
8zaq5733o3zqt9zcziy303a1t63ttbj
12133
12132
2026-04-23T11:14:03Z
De-Invincible
36
12133
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox person/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Lion of Judah depicted by the drawing of a lion face.png}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{{name|{{PAGENAME}}}}}</div></div>
{{#if: {{{breed|}}}{{{species|}}} |<div class="custom-infobox-subheader">{{#if: {{{breed|}}} | {{{breed}}} | ''{{{genus|}}} {{{species|}}}'' }}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{status|}}} |<div class="custom-infobox-section-header">Conservation status</div>
<div style="text-align: center; font-weight: bold; padding: 5px;">
{{{status}}}{{#if: {{{status_system|}}} | <span style="font-size: 85%; font-weight: normal;"> ({{{status_system}}})</span> }}{{{status_ref|}}}
</div> }}
{{#if: {{{genus|}}}{{{species|}}}{{{authority|}}} |<div class="custom-infobox-section-header">Scientific classification</div>}}{{#if: {{{parent|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Subgenus:</div><div class="custom-infobox-data">''{{{parent}}}''</div></div> }}{{#if: {{{genus|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Genus:</div><div class="custom-infobox-data">''{{{genus}}}''</div></div> }}{{#if: {{{species|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Species:</div><div class="custom-infobox-data">''{{{species}}}''</div></div> }}{{#if: {{{authority|}}} |<div style="text-align: center; font-size: 85%; padding-bottom: 5px;">{{{authority}}}</div> }}{{#if: {{{subdivision_ranks|}}} |<div class="custom-infobox-section-header" style="background-color: #f2f2f2; font-size: 95%;">{{{subdivision_ranks}}}</div><div style="padding-left: 5px;">{{{subdivision|}}}</div> }}{{#if: {{{synonyms|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Synonyms:</div><div class="custom-infobox-data" style="font-size: 90%;">{{{synonyms}}}</div></div> }}
{{#if: {{{range_map|}}} |<div style="text-align: center; border-top: 1px solid #ddd; margin-top: 10px; padding-top: 10px;">[[Payìil:{{{range_map}}}|250px]]
{{#if: {{{range_map_caption|}}} | <div style="font-size: 85%; color: #555;">{{{range_map_caption}}}</div> }}
</div> }}
{{#if: {{{sex|}}}{{{othername|}}}{{{namedafter|}}} |<div class="custom-infobox-section-header">Biological details</div>}}{{#if: {{{othername|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other names:</div><div class="custom-infobox-data">{{{othername}}}</div></div> }}{{#if: {{{sex|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Sex:</div><div class="custom-infobox-data">{{{sex}}}</div></div> }}{{#if: {{{namedafter|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Named after:</div><div class="custom-infobox-data">{{{namedafter}}}</div></div> }}
{{#if: {{{birth_date|}}}{{{birth_name|}}}{{{hatch_date|}}}{{{death_date|}}}{{{resting_place|}}} |<div class="custom-infobox-section-header">Life and history</div>}}{{#if: {{{birth_name|}}}{{{hatch_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name|}}}{{{hatch_name|}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}}{{{hatch_date|}}}{{{hatch_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born/Hatched:</div><div class="custom-infobox-data">{{{birth_date|}}}{{{hatch_date|}}}{{#if: {{{birth_place|}}}{{{hatch_place|}}} | <br>{{{birth_place|}}}{{{hatch_place|}}} }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}
{{#if: {{{occupation|}}}{{{role|}}}{{{known_for|}}}{{{tricks|}}}{{{awards|}}}{{{title|}}} |<div class="custom-infobox-section-header">Career</div>}}{{#if: {{{occupation|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Occupation:</div><div class="custom-infobox-data">{{{occupation}}}</div></div> }}{{#if: {{{role|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Role:</div><div class="custom-infobox-data">{{{role}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{tricks|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Tricks:</div><div class="custom-infobox-data">{{{tricks}}}</div></div> }}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}{{#if: {{{title|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Title:</div><div class="custom-infobox-data">{{{title}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}
{{#if: {{{weight|}}}{{{height|}}}{{{appearance|}}} |<div class="custom-infobox-section-header">Characteristics</div>}}{{#if: {{{weight|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Weight:</div><div class="custom-infobox-data">{{{weight}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{appearance|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Appearance:</div><div class="custom-infobox-data">{{{appearance}}}</div></div> }}
{{#if: {{{owner|}}}{{{residence|}}}{{{parents|}}}{{{mate|}}}{{{children|}}} |<div class="custom-infobox-section-header">Relations</div>}}{{#if: {{{owner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Owner:</div><div class="custom-infobox-data">{{{owner}}}</div></div> }}{{#if: {{{residence|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Residence:</div><div class="custom-infobox-data">{{{residence}}}</div></div> }}{{#if: {{{parents|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parents:</div><div class="custom-infobox-data">{{{parents}}}</div></div> }}{{#if: {{{mate|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Mate:</div><div class="custom-infobox-data">{{{mate}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}
{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox animal
| name =
| icon =
| image =
| image_upright =
| alt =
| caption =
| status =
| status_system =
| status_ref =
| genus =
| parent =
| species =
| authority =
| subdivision_ranks =
| subdivision =
| synonyms =
| range_map =
| range_map_caption =
| othername =
| breed =
| sex =
| birth_name =
| birth_date =
| birth_place =
| hatch_name =
| hatch_date =
| hatch_place =
| death_date =
| death_place =
| death_cause =
| resting_place =
| resting_place_coordinates =
| occupation =
| role =
| years_active =
| known_for =
| tricks =
| awards =
| title =
| term =
| predecessor =
| successor =
| owner =
| residence =
| parents =
| mate =
| children =
| weight =
| height =
| appearance =
| namedafter =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| website =
| footnotes =
}}
</pre>
</noinclude>
bro453im6ycck0ijuqxq4avkllzbcjp
12134
12133
2026-04-23T11:19:43Z
De-Invincible
36
12134
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox person/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Lion of Judah depicted by the drawing of a lion face.png}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{{name|{{PAGENAME}}}}}</div></div>
{{#if: {{{breed|}}}{{{species|}}} |<div class="custom-infobox-subheader">{{#if: {{{breed|}}} | {{{breed}}} | ''{{{genus|}}} {{{species|}}}'' }}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{status|}}} |<div class="custom-infobox-section-header">Conservation status</div>
<div style="text-align: center; font-weight: bold; padding: 5px;">
{{{status}}}{{#if: {{{status_system|}}} | <span style="font-size: 85%; font-weight: normal;"> ({{{status_system}}})</span> }}{{{status_ref|}}}</div> }}
{{#if: {{{genus|}}}{{{species|}}}{{{authority|}}} |<div class="custom-infobox-section-header">Scientific classification</div>}}{{#if: {{{parent|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Subgenus:</div><div class="custom-infobox-data">''{{{parent}}}''</div></div> }}{{#if: {{{genus|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Genus:</div><div class="custom-infobox-data">''{{{genus}}}''</div></div> }}{{#if: {{{species|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Species:</div><div class="custom-infobox-data">''{{{species}}}''</div></div> }}{{#if: {{{authority|}}} |<div style="text-align: center; font-size: 85%; padding-bottom: 5px;">{{{authority}}}</div> }}{{#if: {{{subdivision_ranks|}}} |<div class="custom-infobox-section-header" style="background-color: #f2f2f2; font-size: 95%;">{{{subdivision_ranks}}}</div><div style="padding-left: 5px;">{{{subdivision|}}}</div> }}{{#if: {{{synonyms|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Synonyms:</div><div class="custom-infobox-data" style="font-size: 90%;">{{{synonyms}}}</div></div> }}
{{#if: {{{range_map|}}} |<div style="text-align: center; border-top: 1px solid #ddd; margin-top: 10px; padding-top: 10px;">[[Payìil:{{{range_map}}}|250px]]
{{#if: {{{range_map_caption|}}} | <div style="font-size: 85%; color: #555;">{{{range_map_caption}}}</div> }}</div> }}
{{#if: {{{sex|}}}{{{othername|}}}{{{namedafter|}}} |<div class="custom-infobox-section-header">Biological details</div>}}{{#if: {{{othername|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other names:</div><div class="custom-infobox-data">{{{othername}}}</div></div> }}{{#if: {{{sex|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Sex:</div><div class="custom-infobox-data">{{{sex}}}</div></div> }}{{#if: {{{namedafter|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Named after:</div><div class="custom-infobox-data">{{{namedafter}}}</div></div> }}
{{#if: {{{birth_date|}}}{{{birth_name|}}}{{{hatch_date|}}}{{{death_date|}}}{{{resting_place|}}} |<div class="custom-infobox-section-header">Life and history</div>}}{{#if: {{{birth_name|}}}{{{hatch_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name|}}}{{{hatch_name|}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}}{{{hatch_date|}}}{{{hatch_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born/Hatched:</div><div class="custom-infobox-data">{{{birth_date|}}}{{{hatch_date|}}}{{#if: {{{birth_place|}}}{{{hatch_place|}}} | <br>{{{birth_place|}}}{{{hatch_place|}}} }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}
{{#if: {{{occupation|}}}{{{role|}}}{{{known_for|}}}{{{tricks|}}}{{{awards|}}}{{{title|}}} |<div class="custom-infobox-section-header">Career</div>}}{{#if: {{{occupation|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Occupation:</div><div class="custom-infobox-data">{{{occupation}}}</div></div> }}{{#if: {{{role|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Role:</div><div class="custom-infobox-data">{{{role}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{tricks|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Tricks:</div><div class="custom-infobox-data">{{{tricks}}}</div></div> }}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}{{#if: {{{title|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Title:</div><div class="custom-infobox-data">{{{title}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}
{{#if: {{{weight|}}}{{{height|}}}{{{appearance|}}} |<div class="custom-infobox-section-header">Characteristics</div>}}{{#if: {{{weight|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Weight:</div><div class="custom-infobox-data">{{{weight}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{appearance|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Appearance:</div><div class="custom-infobox-data">{{{appearance}}}</div></div> }}
{{#if: {{{owner|}}}{{{residence|}}}{{{parents|}}}{{{mate|}}}{{{children|}}} |<div class="custom-infobox-section-header">Relations</div>}}{{#if: {{{owner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Owner:</div><div class="custom-infobox-data">{{{owner}}}</div></div> }}{{#if: {{{residence|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Residence:</div><div class="custom-infobox-data">{{{residence}}}</div></div> }}{{#if: {{{parents|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parents:</div><div class="custom-infobox-data">{{{parents}}}</div></div> }}{{#if: {{{mate|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Mate:</div><div class="custom-infobox-data">{{{mate}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox animal
| name =
| icon =
| image =
| image_upright =
| alt =
| caption =
| status =
| status_system =
| status_ref =
| genus =
| parent =
| species =
| authority =
| subdivision_ranks =
| subdivision =
| synonyms =
| range_map =
| range_map_caption =
| othername =
| breed =
| sex =
| birth_name =
| birth_date =
| birth_place =
| hatch_name =
| hatch_date =
| hatch_place =
| death_date =
| death_place =
| death_cause =
| resting_place =
| resting_place_coordinates =
| occupation =
| role =
| years_active =
| known_for =
| tricks =
| awards =
| title =
| term =
| predecessor =
| successor =
| owner =
| residence =
| parents =
| mate =
| children =
| weight =
| height =
| appearance =
| namedafter =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| website =
| footnotes =
}}
</pre>
</noinclude>
ddo7fj08tza4p1azq1qensoecis0qo8
Tampilet:Infobox football biography
10
274
12131
1050
2026-04-23T10:53:26Z
De-Invincible
36
12131
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox football biography/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Goalkeeper-gloves-icon.png}}}|50px|link=]]</div>
<div class="custom-infobox-name">{{{name|{{PAGENAME}}}}}</div></div>
{{#if: {{{currentclub|}}} |<div class="custom-infobox-subheader">{{{currentclub}}}{{#if: {{{clubnumber|}}} | – No. {{{clubnumber}}} }}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{upright|}}} | {{{upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{full_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{height|}}}{{{position|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{full_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Full name:</div><div class="custom-infobox-data">{{{full_name}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{position|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Position:</div><div class="custom-infobox-data">{{{position}}}</div></div> }}
{{#if: {{{youthyears1|}}}{{{collegeyears1|}}} |<div class="custom-infobox-section-header">Youth career</div>}}{{#if: {{{youthyears1|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{youthyears1}}}:</div><div class="custom-infobox-data">{{{youthclubs1}}}</div></div> }}{{#if: {{{collegeyears1|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{collegeyears1}}}:</div><div class="custom-infobox-data">{{{college1}}} ({{{collegecaps1}}} / {{{collegegoals1}}})</div></div> }}
{{#if: {{{years1|}}} |<div class="custom-infobox-section-header">Senior career</div>}}{{#if: {{{years1|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{years1}}}:</div><div class="custom-infobox-data">{{{clubs1}}} ({{{caps1}}} / {{{goals1}}})</div></div> }}
{{#if: {{{nationalyears1|}}} |<div class="custom-infobox-section-header">National team</div>}}{{#if: {{{nationalyears1|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{nationalyears1}}}:</div><div class="custom-infobox-data">{{{nationalteam1}}} ({{{nationalcaps1}}} / {{{nationalgoals1}}})</div></div> }}
{{#if: {{{medaltemplates|}}} |<div class="custom-infobox-section-header">Medals</div><div style="text-align: center;">{{{medaltemplates}}}</div>}}
{{#if: {{{club-update|}}}{{{nationalteam-update|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">
{{#if: {{{club-update|}}} | Club update: {{{club-update}}}<br> }}
{{#if: {{{nationalteam-update|}}} | National update: {{{nationalteam-update}}} }}
</div>}}
{{{embed|}}}</div></div>
<noinclude>
<pre>
{{Infobox football biography
| name =
| icon =
| image =
| upright =
| alt =
| caption =
| full_name =
| birth_date =
| birth_place =
| height =
| position =
| currentclub =
| clubnumber =
| youthyears1 =
| youthclubs1 =
| collegeyears1 =
| college1 =
| collegecaps1 =
| collegegoals1 =
| years1 =
| clubs1 =
| caps1 =
| goals1 =
| nationalyears1 =
| nationalteam1 =
| nationalcaps1 =
| nationalgoals1 =
| medaltemplates =
| club-update =
| nationalteam-update =
| embed =
}}
</pre>
{{Documentation}}
</noinclude>
qzcqd08i0cyneriyzby42tj8kqwy9il
Tampilet:Infobox musical artist
10
285
12008
10820
2026-04-23T04:54:06Z
De-Invincible
36
12008
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:260px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<!-- Header (Language Name) -->
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{{name|}}}
</div>
<!-- Subheader under Name -->
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{subheader|}}} |
<div style="
text-align:center;
font-weight:bold;
background-color:#C2185B;
padding:1px 0;
margin-top:5px;
line-height:1.2;
color:#fff;
text-shadow:0 1px 1px rgba(0,0,0,0.25);
">
{{{subheader}}}
</div>
}}
<!-- Image -->
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{{image_size|250}}}px]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<!-- Rest of the code remains the same -->
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name|}}}</div>
</div>
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}<br>{{{birth_place|}}}
</div>
</div>
{{#if: {{{death_date|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date}}}<br>{{{death_place}}}
</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality|}}}</div>
</div>
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation|}}}</div>
</div>
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>
}}</div></div>
<noinclude>
<pre>
{{Infobox musical artist
| name =
| subheader =
| image =
| caption =
| birth_name =
| birth_date =
| birth_place =
| nationality =
| education =
| alma mater =
| occupation =
| years_active =
| spouse =
| children =
| relations =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
3f8guj5g2ros5yu30z0u16dvff7xyrf
12009
12008
2026-04-23T04:54:58Z
De-Invincible
36
12009
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:260px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<!-- Header (Language Name) -->
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{{name|}}}
</div>
<!-- Subheader under Name -->
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{subheader|}}} |
<div style="
text-align:center;
font-weight:bold;
background-color:#C2185B;
padding:1px 0;
margin-top:5px;
line-height:1.2;
color:#fff;
text-shadow:0 1px 1px rgba(0,0,0,0.25);
">
{{{subheader}}}
</div>
}}
<!-- Image -->
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{{image_size|250}}}px]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<!-- Rest of the code remains the same -->
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name|}}}</div>
</div>
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}<br>{{{birth_place|}}}
</div>
</div>
{{#if: {{{death_date|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date}}}<br>{{{death_place}}}
</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality|}}}</div>
</div>
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation|}}}</div>
</div>
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>
}}</div></div>
<noinclude>
<pre>
{{Infobox musical artist
| name =
| subheader =
| image =
| caption =
| birth_name =
| birth_date =
| birth_place =
| nationality =
| education =
| alma mater =
| occupation =
| years_active =
| spouse =
| children =
| relations =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
0tcm1ze2caofjf8vy8r64w63o3nv3tm
12010
12009
2026-04-23T04:55:47Z
De-Invincible
36
12010
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:260px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<!-- Header (Language Name) -->
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{{name|}}}
</div>
<!-- Subheader under Name -->
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
<!-- Image -->
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{{image_size|250}}}px]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<!-- Rest of the code remains the same -->
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name|}}}</div>
</div>
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}<br>{{{birth_place|}}}
</div>
</div>
{{#if: {{{death_date|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date}}}<br>{{{death_place}}}
</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality|}}}</div>
</div>
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation|}}}</div>
</div>
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>
}}</div></div>
<noinclude>
<pre>
{{Infobox musical artist
| name =
| subheader =
| image =
| caption =
| birth_name =
| birth_date =
| birth_place =
| nationality =
| education =
| alma mater =
| occupation =
| years_active =
| spouse =
| children =
| relations =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
59bqy0xmo1t7q7x8f9gmerm4mgxpzl6
12038
12010
2026-04-23T06:34:54Z
De-Invincible
36
12038
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:260px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span>
}}{{{name|}}}{{#if: {{{honorific_suffix|}}} |
<span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{alias|}}}{{{birth_date|}}}{{{birth_place|}}}{{{origin|}}}{{{death_date|}}}{{{death_place|}}}{{{nationality|}}}{{{education|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:5px 0; color:#fff;">Personal information</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}
</div>
</div> }}
{{#if: {{{origin|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Origin:</div>
<div style="flex: 1;">{{{origin}}}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}
</div>
</div> }}
{{#if: {{{nationality|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality}}}</div>
</div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{instrument|}}}{{{works|}}}{{{years_active|}}}{{{genre|}}}{{{label|}}}{{{publishers|}}}{{{current_member_of|}}}{{{past_member_of|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Career</div>
}}
{{#if: {{{occupation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation}}}</div>
</div> }}
{{#if: {{{instrument|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Instrument:</div>
<div style="flex: 1;">{{{instrument}}}</div>
</div> }}
{{#if: {{{works|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Works:</div>
<div style="flex: 1;">{{{works}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{label|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Label:</div>
<div style="flex: 1;">{{{label}}}</div>
</div> }}
{{#if: {{{publishers|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Publishers:</div>
<div style="flex: 1;">{{{publishers}}}</div>
</div> }}
{{#if: {{{current_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Current member of:</div>
<div style="flex: 1;">{{{current_member_of}}}</div>
</div> }}
{{#if: {{{past_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Past member of:</div>
<div style="flex: 1;">{{{past_member_of}}}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Recognition</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>
}}
</div>
</div>
<noinclude>
<pre>
{{Infobox musical artist
| background =
| honorific_prefix =
| name =
| honorific_suffix =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| alias =
| birth_date =
| birth_place =
| origin =
| death_date =
| death_place =
| death_cause =
| genre =
| occupation =
| instrument =
| works =
| years_active =
| label =
| publishers =
| current_member_of =
| past_member_of =
| spouse =
| partner =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
c8apsr2zn1eass9wktdh0sjq495saz2
12040
12038
2026-04-23T06:37:25Z
De-Invincible
36
12040
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:260px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span>
}}{{{name|}}}{{#if: {{{honorific_suffix|}}} |
<span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{alias|}}}{{{birth_date|}}}{{{birth_place|}}}{{{origin|}}}{{{death_date|}}}{{{death_place|}}}{{{nationality|}}}{{{education|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:5px 0; color:#fff;">Personal information</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}
</div>
</div> }}
{{#if: {{{origin|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Origin:</div>
<div style="flex: 1;">{{{origin}}}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}
</div>
</div> }}
{{#if: {{{nationality|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality}}}</div>
</div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{instrument|}}}{{{works|}}}{{{years_active|}}}{{{genre|}}}{{{label|}}}{{{publishers|}}}{{{current_member_of|}}}{{{past_member_of|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Career</div>
}}
{{#if: {{{occupation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation}}}</div>
</div> }}
{{#if: {{{instrument|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Instrument:</div>
<div style="flex: 1;">{{{instrument}}}</div>
</div> }}
{{#if: {{{works|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Works:</div>
<div style="flex: 1;">{{{works}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{label|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Label:</div>
<div style="flex: 1;">{{{label}}}</div>
</div> }}
{{#if: {{{publishers|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Publishers:</div>
<div style="flex: 1;">{{{publishers}}}</div>
</div> }}
{{#if: {{{current_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Current member of:</div>
<div style="flex: 1;">{{{current_member_of}}}</div>
</div> }}
{{#if: {{{past_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Past member of:</div>
<div style="flex: 1;">{{{past_member_of}}}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Recognition</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>
}}
</div>
</div>
<noinclude>
<pre>
{{Infobox musical artist
| background =
| honorific_prefix =
| name =
| honorific_suffix =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| alias =
| birth_date =
| birth_place =
| origin =
| death_date =
| death_place =
| death_cause =
| genre =
| occupation =
| instrument =
| works =
| years_active =
| label =
| publishers =
| current_member_of =
| past_member_of =
| spouse =
| partner =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
t2wwi4q9122wswpelo6yri8h2xwl435
12053
12040
2026-04-23T06:50:01Z
De-Invincible
36
12053
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:305px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span>
}}{{{name|}}}{{#if: {{{honorific_suffix|}}} |
<span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{alias|}}}{{{birth_date|}}}{{{birth_place|}}}{{{origin|}}}{{{death_date|}}}{{{death_place|}}}{{{nationality|}}}{{{education|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:5px 0; color:#fff;">Personal information</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}
</div>
</div> }}
{{#if: {{{origin|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Origin:</div>
<div style="flex: 1;">{{{origin}}}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}
</div>
</div> }}
{{#if: {{{nationality|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality}}}</div>
</div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{instrument|}}}{{{works|}}}{{{years_active|}}}{{{genre|}}}{{{label|}}}{{{publishers|}}}{{{current_member_of|}}}{{{past_member_of|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Career</div>
}}
{{#if: {{{occupation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation}}}</div>
</div> }}
{{#if: {{{instrument|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Instrument:</div>
<div style="flex: 1;">{{{instrument}}}</div>
</div> }}
{{#if: {{{works|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Works:</div>
<div style="flex: 1;">{{{works}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{label|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Label:</div>
<div style="flex: 1;">{{{label}}}</div>
</div> }}
{{#if: {{{publishers|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Publishers:</div>
<div style="flex: 1;">{{{publishers}}}</div>
</div> }}
{{#if: {{{current_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Current member of:</div>
<div style="flex: 1;">{{{current_member_of}}}</div>
</div> }}
{{#if: {{{past_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Past member of:</div>
<div style="flex: 1;">{{{past_member_of}}}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Recognition</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>
}}
</div>
</div>
<noinclude>
<pre>
{{Infobox musical artist
| background =
| honorific_prefix =
| name =
| honorific_suffix =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| alias =
| birth_date =
| birth_place =
| origin =
| death_date =
| death_place =
| death_cause =
| genre =
| occupation =
| instrument =
| works =
| years_active =
| label =
| publishers =
| current_member_of =
| past_member_of =
| spouse =
| partner =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
anhbns6xcywkrqfk9wnbgsezwxv8ywf
12135
12053
2026-04-23T11:50:52Z
De-Invincible
36
12135
wikitext
text/x-wiki
<div style="
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 305px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
position: relative; /* Crucial for positioning the icon */
">
<div style="
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 10px 55px 10px 10px; /* Added right padding (55px) so text doesn't hit the icon */
line-height: 1.2;
word-wrap: break-word;
hyphens: auto;
background-color: #f9f9f9;
">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span> }}
{{{name|}}}
{{#if: {{{honorific_suffix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }} </div>
<div style="position: absolute; right: 5px; top: 8px; /* Adjust this to move it up or down */ opacity: 0.5; z-index: 1;">
[[Payìil:{{{icon|Fluent Emoji high contrast 1f3b8.svg}}}|50px|link=]] </div></div>
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{alias|}}}{{{birth_date|}}}{{{birth_place|}}}{{{origin|}}}{{{death_date|}}}{{{death_place|}}}{{{nationality|}}}{{{education|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:5px 0; color:#fff;">Personal information</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}
</div>
</div> }}
{{#if: {{{origin|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Origin:</div>
<div style="flex: 1;">{{{origin}}}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}
</div>
</div> }}
{{#if: {{{nationality|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality}}}</div>
</div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{instrument|}}}{{{works|}}}{{{years_active|}}}{{{genre|}}}{{{label|}}}{{{publishers|}}}{{{current_member_of|}}}{{{past_member_of|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Career</div>
}}
{{#if: {{{occupation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation}}}</div>
</div> }}
{{#if: {{{instrument|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Instrument:</div>
<div style="flex: 1;">{{{instrument}}}</div>
</div> }}
{{#if: {{{works|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Works:</div>
<div style="flex: 1;">{{{works}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{label|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Label:</div>
<div style="flex: 1;">{{{label}}}</div>
</div> }}
{{#if: {{{publishers|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Publishers:</div>
<div style="flex: 1;">{{{publishers}}}</div>
</div> }}
{{#if: {{{current_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Current member of:</div>
<div style="flex: 1;">{{{current_member_of}}}</div>
</div> }}
{{#if: {{{past_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Past member of:</div>
<div style="flex: 1;">{{{past_member_of}}}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Recognition</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>
}}
</div>
</div>
<noinclude>
<pre>
{{Infobox musical artist
| background =
| honorific_prefix =
| name =
| honorific_suffix =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| alias =
| birth_date =
| birth_place =
| origin =
| death_date =
| death_place =
| death_cause =
| genre =
| occupation =
| instrument =
| works =
| years_active =
| label =
| publishers =
| current_member_of =
| past_member_of =
| spouse =
| partner =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
m82gw6a63ywuxepv70hh6xkjhf37blx
12136
12135
2026-04-23T11:56:57Z
De-Invincible
36
12136
wikitext
text/x-wiki
<div style="border: 1px solid #aaa; background-color: #f9f9f9; width: 305px; float: right; margin: 0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size: 90%; position: relative;">
<div style="text-align: center; font-size: 130%; font-weight: bold; color: #000; padding: 10px 55px 10px 10px; line-height: 1.2; word-wrap: break-word; hyphens: auto;">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span> }}
{{{name|}}}
{{#if: {{{honorific_suffix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
<div style="position: absolute; right: 5px; top: 2px; opacity: 0.5; z-index: 1;">
[[Payìil:{{{icon|Fluent Emoji high contrast 1f3b8.svg}}}|50px|link=]]
</div>{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{alias|}}}{{{birth_date|}}}{{{birth_place|}}}{{{origin|}}}{{{death_date|}}}{{{death_place|}}}{{{nationality|}}}{{{education|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:5px 0; color:#fff;">Personal information</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Sim:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{alias|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alias:</div>
<div style="flex: 1;">{{{alias}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Làawàa:</div>
<div style="flex: 1;"> {{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}
</div>
</div> }}
{{#if: {{{origin|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Origin:</div>
<div style="flex: 1;">{{{origin}}}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mèetò:</div>
<div style="flex: 1;">
{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}
</div></div> }}
{{#if: {{{nationality|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàa Ƴali mà:</div>
<div style="flex: 1;">{{{nationality}}}</div></div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Karàatu:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{instrument|}}}{{{works|}}}{{{years_active|}}}{{{genre|}}}{{{label|}}}{{{publishers|}}}{{{current_member_of|}}}{{{past_member_of|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Career</div>
}}
{{#if: {{{occupation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Wanàu:</div>
<div style="flex: 1;">{{{occupation}}}</div>
</div> }}
{{#if: {{{instrument|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Instrument:</div>
<div style="flex: 1;">{{{instrument}}}</div>
</div> }}
{{#if: {{{works|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Works:</div>
<div style="flex: 1;">{{{works}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{genre|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Genre:</div>
<div style="flex: 1;">{{{genre}}}</div>
</div> }}
{{#if: {{{label|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Label:</div>
<div style="flex: 1;">{{{label}}}</div>
</div> }}
{{#if: {{{publishers|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Publishers:</div>
<div style="flex: 1;">{{{publishers}}}</div>
</div> }}
{{#if: {{{current_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Current member of:</div>
<div style="flex: 1;">{{{current_member_of}}}</div>
</div> }}
{{#if: {{{past_member_of|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Past member of:</div>
<div style="flex: 1;">{{{past_member_of}}}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Mìzī/Mendò:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Dingìnèe:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#C2185B; padding:3px; margin:10px 0 5px 0; color:#fff;">Recognition</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Bàrànkàu:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Sàyin:</strong><br>[[Payìil:{{{signature}}}|240px]]</div>}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Jeèrē-tà-sāwana:</strong><br>[{{{website}}} {{{website}}}]</div>}}</div></div>
<noinclude>
<pre>
{{Infobox musical artist
| background =
| honorific_prefix =
| name =
| honorific_suffix =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| alias =
| birth_date =
| birth_place =
| origin =
| death_date =
| death_place =
| death_cause =
| genre =
| occupation =
| instrument =
| works =
| years_active =
| label =
| publishers =
| current_member_of =
| past_member_of =
| spouse =
| partner =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
dhtb3iw5ljah17ybzvh0ep5cprlg5if
Tampilet:Infobox person
10
288
11901
11825
2026-04-22T12:15:50Z
De-Invincible
36
11901
wikitext
text/x-wiki
{{Infobox|child={{{child|{{{embed|}}}}}}
| templatestyles = Infobox person/styles.css
| bodyclass = biography vcard
| bodystyle = line-height: 1.6; font-size:92%; border-spacing: 0; border: 1px solid #e0e0e0; border-radius: 20px; padding: 12px; background: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.08); width: 280px;
| labelstyle = font-weight: 700; color: #555; padding: 6px 10px; font-size: 85%; text-transform: uppercase; letter-spacing: 0.5px; vertical-align: top;
| datastyle = padding: 6px 10px; vertical-align: middle; color: #222;
| subheaderstyle = font-size:88%; background:#f0f2f5; border-radius:12px; padding:6px; color: #444; font-style: italic;
| above = {{Br separated entries
| 1 = {{#if:{{{honorific prefix|{{{honorific_prefix|{{{honorific-prefix|{{{pre-nominals|}}}}}}}}}}}}|<div class="honorific-prefix" style="font-size: 70%; uppercase; font-weight: normal; color: #777;">{{{honorific prefix|{{{honorific_prefix|{{{honorific-prefix|{{{pre-nominals|}}}}}}}}}}}}</div>}}
| 2 = <div class="fn" style="display:block; margin: 4px 0;">{{#if:{{{name|}}}|{{{name}}}|{{PAGENAMEBASE}}}}</div>
| 3 = {{#if:{{{honorific suffix|{{{honorific_suffix|{{{honorific-suffix|{{{post-nominals|}}}}}}}}}}}}|<div class="honorific-suffix" style="font-size: 70%; font-weight: normal; color: #777;">{{{honorific suffix|{{{honorific_suffix|{{{honorific-suffix|{{{post-nominals|}}}}}}}}}}}}</div>}}
}}
| aboveclass = summary
| abovestyle = font-size:125%; background: linear-gradient(135deg, #FAEACB 0%, #f7d794 100%); color: #333; font-weight: 800; border-radius: 14px; padding: 12px; border-bottom: 3px solid #e67e22;
| subheader = {{#switch:{{{child|{{{embed|}}}}}}|yes=|#default={{#if:{{{native_name|}}}|<div class="nickname" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}} }}
| headerstyle = background: #fdf6e9; color: #a67c52; font-size: 90%; font-weight: bold; border-radius: 8px; padding: 4px; text-align: center;
| autoheaders = y
| image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image|}}}|size={{#ifeq:{{lc:{{{landscape|}}}}}|yes|{{min|300|{{#if:{{#ifexpr:{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}}}|300|{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}}}}}x200px|{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}}}|sizedefault=frameless|upright={{{image_upright|1}}}|alt={{{alt|}}}|suppressplaceholder=yes}}
| caption = {{{image caption|{{{caption|{{{image_caption|}}}}}}}}}
| label2 = Purci
| data2 = {{{pronunciation|}}}
| label9 = Sim mà làawàa
| data9 = {{{birth_name|}}}
| label10 = Gii tà làawàa
| data10 = {{Br separated entries|1={{{birth_date|}}}|3={{#if:{{{birth_place|}}}|<div style="display:inline" class="birthplace">{{{birth_place|}}}</div>}}}}
| label11 = Gibunyagan
| data11 = {{#if:{{{baptized|{{{baptised|}}}}}}}}
| label12 = Nahánaw
| data12 = {{Br separated entries|1={{{disappeared_date|}}}|2={{{disappeared_place|}}}}}
| label13 = Mu'ami
| data13 = {{{status|{{{disappeared_status|}}}}}}
| label14 = Mèetò
| data14 = {{Br separated entries|1={{{death_date|}}}|2={{#if:{{{death_place|}}}|<div style="display:inline" class="deathplace">{{{death_place|}}}</div>}}}}
| label15 = Hinungdan sa kamatayon
| data15 = {{{death cause|{{{death_cause|}}}}}}
| label16 = Nakaplag ang lawas
| data16 = {{{body discovered|{{{body_discovered|}}}}}}
| label17 = Gilubong sa
| data17 = {{#if:{{{burial_place|}}}|{{Br separated entries|1={{{burial_place|}}}|2={{{burial_coordinates|}}}}}|{{Br separated entries|1={{{resting place|{{{resting_place|{{{restingplace|}}}}}}}}}|2={{{resting place coordinates|{{{resting_place_coordinates|{{{restingplacecoordinates|}}}}}}}}}}}}}
| class17 = label
| label18 = Bantáyog
| data18 = {{{monuments|}}}
| label19 = Puluy-ánan
| data19 = {{{residence|}}}
| class19 = {{#if:{{{death_date|}}}{{{death_place|}}}||label}}
| label20 = Mà ƴal tà
| data20 = {{{nationality|}}}
| class20 = category
| label21 = Sim wadì
| data21 = {{{other names|{{{other_names|{{{othername|{{{nickname|{{{alias|}}}}}}}}}}}}}}}
| class21 = nickname
| label22 = Siglum
| data22 = {{{siglum|}}}
| label23 = Ƴali
| data23 = {{{citizenship|}}}
| class23 = category
| label24 = Karatu
| data24 = {{{education|}}}
| label25 = Makarànta
| data25 = {{{alma mater|{{{alma_mater|}}}}}}
| label26 = Wàanò
| data26 = {{{occupation|}}}
| class26 = role
| label27 = Katuigan
| data27 = {{{years active|{{{years_active|{{{yearsactive|}}}}}}}}}
| label28 = Panahon
| data28 = {{{era|}}}
| label29 = Gii tà wàanò
| data29 = {{{employer|}}}
| class29 = org
| label30 = Kampani
| data30 = {{{organisation|{{{organization|{{{organizations|}}}}}}}}}
| class30 = org
| label31 = Ejan
| data31 = {{{agent|}}}
| class31 = agent
| label32 = Nailhan sa
| data32 = {{{known for|{{{known_for|{{{known|}}}}}}}}}
| label33 = <div style="white-space:nowrap;">{{#if:{{{works|}}}|Buhat|{{#if:{{{credits|}}}|Nailhan nga pagkredito|{{#if:{{{label_name|}}}|Label|Nailhan nga pagbuhat}}}}}}</div>
| data33 = {{#if:{{{works|}}}|{{{works|}}}|{{#if:{{{credits|}}}|{{{credits}}}|{{#if:{{{label_name|}}}|{{{label_name}}}|{{{notable works|{{{notable_works|}}}}}}}}}}}}
| label34 = Urog
| data34 = {{{style|}}}
| class34 = category
| label39 = Pagkadátû
| data39 = {{{net worth|{{{net_worth|{{{networth|}}}}}}}}}
| label40 = Kataas
| data40 = {{#if:{{{height_m|{{{height_cm|}}}}}}{{{height_ft|}}}{{{height_in|}}} | {{convinfobox|{{{height_m|{{{height_cm|}}}}}}|{{#if:{{{height_m|}}}|{{abbr|m|metro}}|{{abbr|sm|sentimetro}}}}|{{{height_ft|}}}|{{abbr|py|piye}}|{{{height_in|}}}|{{abbr|pul.|pulgadas}}}}}}{{#if:{{{height|}}} | {{infobox tawo/height|{{{height|}}}}}}}
| label42 = Pasundayag
| data42 = {{{television|}}}
| label43 = {{#if:{{{office|}}}|Katungdanan|Ulohan}}
| data43 = {{{office|{{{title|}}}}}}
| class43 = title
| label44 = Lugpong
| data44 = {{{term|}}}
| label45 = Ang gipulihan
| data45 = {{{predecessor|}}}
| label46 = Kahalili
| data46 = {{{successor|}}}
| label47 = Partídu sa politika
| data47 = {{{party|}}}
| class47 = org
| label48 = Kalihokan
| data48 = {{{movement|}}}
| class48 = category
| label49 = <span class="nowrap">Katunggali</span>
| data49 = {{{opponents|}}}
| label50 = Sakop sa Lupon
| data50 = {{{boards|}}}
| label51 = Salaod
| data51 = {{{criminal_charges|{{{criminal charge|{{{criminal_charge|}}}}}}}}}
| label52 = Paghukom
| data52 = {{{criminal penalty|{{{criminal_penalty|}}}}}}
| label53 = {{#if:{{{judicial status|{{{judicial_status|}}}}}}|Kahimtang sa pamalaod|Kahimtang sa saláud}}
| data53 = {{#if:{{{judicial status|{{{judicial_status|}}}}}} | {{{judicial status|{{{judicial_status}}}}}} | {{{criminal status|{{{criminal_status|}}}}}}}}
| label54 = <span class="nowrap">Asáwa/bána</span>
| data54 = {{{spouse|}}}
| label55 = Kauban
| data55 = {{{partner|}}}
| label56 = <span class="nowrap">Kasintahan</span>
| data56 = {{{lover|}}}
| label57 = Lèewài
| data57 = {{{children|}}}
| label58 = Ginikanan
| data58 = {{#if:{{{parents|}}}|{{{parents}}}|{{Unbulleted list|{{#if:{{{father|}}}|{{{father}}} (amahan)}}|{{#if:{{{mother|}}}|{{{mother}}} (inahan)}}}}}}
| label59 = Kabánay
| data59 = {{{relations|{{{relatives|}}}}}}
| label60 = Iyàali
| data60 = {{{family|}}}
| label61 = Saad sa radyo
| data61 = {{{callsign|}}}
| label62 = Mga ganti
| data62 = {{{awards|}}}
| label63 = {{#if:{{{honours|}}}|Mga Gantihan}}
| data63 = {{{honours|{{{honors|}}}}}}
| data64 = {{{misc|{{{module|}}}}}}
| data65 = {{{misc1|{{{module1|}}}}}}
| data66 = {{{misc2|{{{module2|}}}}}}
| data67 = {{{misc3|{{{module3|}}}}}}
| data68 = {{{misc4|{{{module4|}}}}}}
| data69 = {{{misc5|{{{module5|}}}}}}
| data70 = {{{misc6|{{{module6|}}}}}}
| label71 = Websayt/Sityo
| data71 = {{{website|{{{homepage|{{{URL|{{{url|}}}}}}}}}}}}
| header72 = {{#if:{{{signature|}}}|Pirma}}
| data73 = {{#invoke:InfoboxImage|InfoboxImage|image={{{signature|}}}|size={{{signature_size|}}}|sizedefault=150px|alt={{{signature alt|{{{signature_alt|}}}}}}}}
| header74 = {{#if:{{{footnotes|}}}|Saysay}}
| data75 = {{#if:{{{footnotes|}}}|<div style="text-align: left;">{{{footnotes}}}</div>}}
}} <noinclude>
<!---Palihug idugang ang mga kategoriya sa<includeonly> seksyon sa ubos sa /doc subpage--->
{{documentation}}
</noinclude>
epwyodozq5wvbifjkhjd14g4vndhq36
12023
11901
2026-04-23T05:14:48Z
De-Invincible
36
12023
wikitext
text/x-wiki
{{Infobox
| child = {{lc:{{{embed}}}}}
| bodyclass = vcard
| title = {{#ifeq:{{lc:{{{embed}}}}}|yes|Musical career}}
| abovestyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| above = {{#ifeq:{{lc:{{{embed}}}}}|yes||{{#if:{{{Name|{{{name|}}}}}}|{{{Name|{{{name}}}}}}|<includeonly>{{BASEPAGENAME}}</includeonly>}}}}
| imageclass = {{Image class names|{{{Img|{{{image|}}}}}}}}
| image = {{#if:{{{Img|{{{image|}}}}}}|[[File:{{{Img|{{{image|}}}}}}|{{px|{{#ifeq:{{lc:{{{Landscape|{{{landscape|}}}}}}}}|yes|{{min|300|{{#if:{{#ifexpr:{{{Img_size|{{{image_size}}}}}}}}|300|{{{Img_size|{{{image_size}}}}}}}}}}x200px}}|{{{Img_size|{{{image_size|}}}}}}|frameless}}|alt={{{Img_alt|{{{alt|}}}}}}|{{{Img_capt|{{{caption|}}}}}}]]}}
| caption = {{{Img_capt|{{{caption|}}}}}}
| headerstyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| header1 = {{#if:{{{Img|{{{image|}}}}}}|Background information}}
| above = {{#if:{{{honorific prefix|{{{honorific_prefix|}}}}}}|<span class="honorific-prefix" style="font-size: small">{{{honorific prefix|{{{honorific_prefix|}}}}}}</span><br />}}<includeonly><span class="fn">{{{name|{{PAGENAME}}}}}</span></includeonly>{{#if:{{{honorific suffix|{{{honorific_suffix|}}}}}}|<br /><span class="honorific-suffix" style="font-size: small">{{{honorific suffix|{{{honorific_suffix|}}}}}}</span>}}
| image = {{#if:{{{image|}}}|[[File:{{{image}}}|{{px|{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}|frameless}}|alt={{{alt|}}}]]}}
| imageclass = {{image class names|{{{image}}}}}
| caption = {{{image caption|{{{caption|{{{image_caption|}}}}}}}}}
| label1 = Native name
| data1 = {{#if:{{{native_name|}}}|<span class="nickname" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}" xml:lang="{{{native_name_lang}}}"}}>{{{native_name}}}</span> }}
| label11 = Ubezalwa
| data11 = {{br separated entries|1={{#if:{{{birth_name|{{{birthname|}}}}}}|<span class="nickname">{{{birth_name|{{{birthname|}}}}}}</span>}}|2={{{birth_date|}}}|3={{#if:{{{birth_place|}}}|<span class="birthplace">{{{birth_place|}}}</span>}}}}
| label12 = Disappeared
| data12 = {{br separated entries|{{{disappeared_date|}}}|{{{disappeared_place|}}} }}
| label13 = Status
| data13 = {{{disappeared_status|}}}
| label14 = Ubefa
| data14 = {{br separated entries|1={{{death_date|}}}|2={{#if:{{{death_place|}}}|<span class="deathplace">{{{death_place|}}}</span>}}}}
| label15 = Cause of death
| data15 = {{{death cause|{{{death_cause|}}}}}}
| label16 = Body discovered
| data16 = {{{body discovered|{{{body_discovered|}}}}}}
| label17 = Resting place
| class17 = label
| data17 = {{br separated entries|{{{resting place|{{{resting_place|{{{restingplace|}}}}}}}}}|{{{resting place coordinates|{{{resting_place_coordinates|{{{restingplacecoordinates|}}}}}}}}}}}
| label18 = Monuments
| data18 = {{{monuments|}}}
| label19 = Ubehlala kwa-
| class19 = {{#if:{{{death_date|}}}{{{death_place|}}}||label}}
| data19 = {{{residence|}}}
| class20 = category
| label20 = Ubuzwe
| data20 = {{{nationality|}}}
| label21 = Ezenye amagama
| class21 = isidlaliso
| data21 = {{{other names|{{{other_names|{{{othername|{{{alias|}}}}}}}}}}}}
| class22 = category
| label22 = Ethnicity
| data22 = {{{ethnicity|}}}
| class23 = category
| label23 = Citizenship
| data23 = {{{citizenship|}}}
| label24 = Education
| data24 = {{{education|}}}
| label25 = ''[[Alma mater]]''
| data25 = {{{alma mater|{{{alma_mater|}}}}}}
| label26 = Occupation
| class26 = role
| data26 = {{{occupation|}}}
| label27 = Years active
| data27 = {{{years active|{{{years_active|{{{yearsactive|}}}}}}}}}
| label28 = Employer
| data28 = {{{employer|}}}
| class28 = org
| label29 = Organization
| data29 = {{{organization|{{{organizations|}}}}}}
| class29 = org
| label30 = Agent
| data30 = {{{agent|}}}
| class30 = agent
| label31 = Known for
| data31 = {{{known for|{{{known_for|{{{known|}}}}}}}}}
| label32 = {{#if:{{{credits|}}}|Notable credit(s)|Notable work(s)}}
| data32 = {{#if:{{{credits|}}}|{{{credits}}}|{{{notable works|{{{notable_works|}}}}}}}}
| label33 = Style
| data33 = {{{style|}}}
| class33 = category
| label34 = Influenced by
| data34 = {{{influences|}}}
| label35 = Influenced
| data35 = {{{influenced|}}}
| label36 = Home town
| data36 = {{{home town|{{{home_town|}}}}}}
| label37 = Salary
| data37 = {{{salary|}}}
| label38 = Net worth
| data38 = {{{net worth|{{{net_worth|{{{networth|}}}}}}}}}
| label39 = Height
| data39 = {{{height|}}}
| label40 = Weight
| data40 = {{{weight|}}}
| label41 = Television
| data41 = {{{television|}}}
| label42 = Title
| data42 = {{{title|}}}
| class42 = title
| label43 = Term
| data43 = {{{term|}}}
| label44 = Predecessor
| data44 = {{{predecessor|}}}
| label45 = Successor
| data45 = {{{successor|}}}
| label46 = Political party
| data46 = {{{party|}}}
| class46 = org
| label47 = Political movement
| data47 = {{{movement|}}}
| class47 = category
| label48 = <span style="white-space:nowrap;">Opponent(s)</span>
| data48 = {{{opponents|}}}
| label49 = Board member of
| data49 = {{{boards|}}}
| label50 = Inkolo
| data50 = {{{religion|}}}
| class50 = category
| label51 = Denomination
| data51 = {{{denomination|}}}
| class51 = category
| label52 = Criminal charge
| data52 = {{{criminal charge|{{{criminal_charge|}}}}}}
| label53 = Criminal penalty
| data53 = {{{criminal penalty|{{{criminal_penalty|}}}}}}
| label54 = Criminal status
| data54 = {{{criminal status|{{{criminal_status|}}}}}}
| class54 = category
| label55 = Spouse
| data55 = {{{spouse|}}}
| label56 = Partner
| data56 = {{{partner|{{{domesticpartner|{{{domestic_partner|}}}}}}}}}
| label57 = Children
| data57 = {{{children|}}}
| label58 = Parents
| data58 = {{{parents|}}}
| label59 = Relatives
| data59 = {{{relations|{{{relatives|}}}}}}
| label60 = Family
| data60 = {{{family|}}}
| label61 = Call-sign
| data61 = {{{callsign|}}}
| label62 = Awards
| data62 = {{{awards|}}}
| data64 = {{{misc|{{{module|}}}}}}
| data65 = {{{misc2|{{{module2|}}}}}}
| data66 = {{{misc3|{{{module3|}}}}}}
| data67 = {{{misc4|{{{module4|}}}}}}
| data68 = {{{misc5|{{{module5|}}}}}}
| data69 = {{{misc6|{{{module6|}}}}}}
| label63 = Signature
| data63 = {{#if:{{{signature|}}}|[[File:{{{signature}}}|{{px|{{{signature_size|}}}|150px}}|alt={{{signature alt|{{{signature_alt|}}}}}}]]}}
| header70 = {{#if:{{{website|{{{homepage|{{{URL|}}}}}}}}}|Website}}
| data71 = {{{website|{{{homepage|{{{URL|}}}}}}}}}
| below = {{#if:{{{footnotes|}}}|'''Notes'''<div style="line-height:1.2em;">{{{footnotes}}}</div>}}
| belowstyle = border-top:1px solid #aaaaaa; text-align:left
}}{{#switch:{{ucfirst:{{{image|}}}}}
|Replace this image male.svg
|Replace_this_image_male.svg
|Replace this image female.svg
|Replace_this_image_female.svg=[[Category:Infobox person using placeholder image]]
}}<!--
-->{{#ifeq:{{NAMESPACE}}|{{ns:0}}|<!--
-->{{#if:{{{1|}}}|{{#ifeq:{{NAMESPACE}}|{{ns:0}}|[[Category:Infobox person using numbered parameter]]}}}}<!--
-->{{#if:{{{box_width|}}}|[[Category:Infobox person using boxwidth parameter]]}}<!--
-->{{#if:{{{death_date|}}}{{{death_place|}}}|{{#if:{{{salary|}}}{{{net worth|{{{net_worth|{{{networth|}}}}}}}}}|[[Category:Infobox person using certain parameters when dead]]}}}}<!--
-->}}{{#if:{{{pronunciation|}}}|[[Category:Biography template using pronunciation]]}}<!--
--><includeonly>{{ns0|{{#if:{{{signature|}}}|[[Category:Biography with signature]]}}[[Category:Articles with hCards]]}}</includeonly><noinclude>
<!---Please add metadata to the <includeonly> section at the bottom of the /doc subpage--->
{{documentation}}
</noinclude>
ckqne1ljf5gcen4l0ilinrm7pulmgj5
12026
12023
2026-04-23T05:27:24Z
De-Invincible
36
12026
wikitext
text/x-wiki
{{Infobox
| child = {{lc:{{{embed}}}}}
| bodyclass = biography vcard
| bodystyle = {{#if:{{{box_width|}}}|width:{{{box_width}}};}}
| title = {{#ifeq:{{lc:{{{embed}}}}}|yes|Musical career}}
| abovestyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| above = {{#ifeq:{{lc:{{{embed}}}}}|yes||{{#if:{{{Name|{{{name|}}}}}}|{{{Name|{{{name}}}}}}|<includeonly>{{BASEPAGENAME}}</includeonly>}}}}
| imageclass = {{Image class names|{{{Img|{{{image|}}}}}}}}
| image = {{#if:{{{Img|{{{image|}}}}}}|[[File:{{{Img|{{{image|}}}}}}|{{px|{{#ifeq:{{lc:{{{Landscape|{{{landscape|}}}}}}}}|yes|{{min|300|{{#if:{{#ifexpr:{{{Img_size|{{{image_size}}}}}}}}|300|{{{Img_size|{{{image_size}}}}}}}}}}x200px}}|{{{Img_size|{{{image_size|}}}}}}|frameless}}|alt={{{Img_alt|{{{alt|}}}}}}|{{{Img_capt|{{{caption|}}}}}}]]}}
| caption = {{{Img_capt|{{{caption|}}}}}}
| headerstyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| header1 = {{#if:{{{Img|{{{image|}}}}}}|Background information}}
| above = {{#if:{{{honorific prefix|{{{honorific_prefix|}}}}}}|<span class="honorific-prefix" style="font-size: small">{{{honorific prefix|{{{honorific_prefix|}}}}}}</span><br />}}<includeonly><span class="fn">{{{name|{{PAGENAME}}}}}</span></includeonly>{{#if:{{{honorific suffix|{{{honorific_suffix|}}}}}}|<br /><span class="honorific-suffix" style="font-size: small">{{{honorific suffix|{{{honorific_suffix|}}}}}}</span>}}
| image = {{#if:{{{image|}}}|[[File:{{{image}}}|{{px|{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}|frameless}}|alt={{{alt|}}}]]}}
| imageclass = {{image class names|{{{image}}}}}
| caption = {{{image caption|{{{caption|{{{image_caption|}}}}}}}}}
| label1 = Native name
| data1 = {{#if:{{{native_name|}}}|<span class="nickname" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}" xml:lang="{{{native_name_lang}}}"}}>{{{native_name}}}</span> }}
| label11 = Ubezalwa
| data11 = {{br separated entries|1={{#if:{{{birth_name|{{{birthname|}}}}}}|<span class="nickname">{{{birth_name|{{{birthname|}}}}}}</span>}}|2={{{birth_date|}}}|3={{#if:{{{birth_place|}}}|<span class="birthplace">{{{birth_place|}}}</span>}}}}
| label12 = Disappeared
| data12 = {{br separated entries|{{{disappeared_date|}}}|{{{disappeared_place|}}} }}
| label13 = Status
| data13 = {{{disappeared_status|}}}
| label14 = Ubefa
| data14 = {{br separated entries|1={{{death_date|}}}|2={{#if:{{{death_place|}}}|<span class="deathplace">{{{death_place|}}}</span>}}}}
| label15 = Cause of death
| data15 = {{{death cause|{{{death_cause|}}}}}}
| label16 = Body discovered
| data16 = {{{body discovered|{{{body_discovered|}}}}}}
| label17 = Resting place
| class17 = label
| data17 = {{br separated entries|{{{resting place|{{{resting_place|{{{restingplace|}}}}}}}}}|{{{resting place coordinates|{{{resting_place_coordinates|{{{restingplacecoordinates|}}}}}}}}}}}
| label18 = Monuments
| data18 = {{{monuments|}}}
| label19 = Ubehlala kwa-
| class19 = {{#if:{{{death_date|}}}{{{death_place|}}}||label}}
| data19 = {{{residence|}}}
| class20 = category
| label20 = Ubuzwe
| data20 = {{{nationality|}}}
| label21 = Ezenye amagama
| class21 = isidlaliso
| data21 = {{{other names|{{{other_names|{{{othername|{{{alias|}}}}}}}}}}}}
| class22 = category
| label22 = Ethnicity
| data22 = {{{ethnicity|}}}
| class23 = category
| label23 = Citizenship
| data23 = {{{citizenship|}}}
| label24 = Education
| data24 = {{{education|}}}
| label25 = ''[[Alma mater]]''
| data25 = {{{alma mater|{{{alma_mater|}}}}}}
| label26 = Occupation
| class26 = role
| data26 = {{{occupation|}}}
| label27 = Years active
| data27 = {{{years active|{{{years_active|{{{yearsactive|}}}}}}}}}
| label28 = Employer
| data28 = {{{employer|}}}
| class28 = org
| label29 = Organization
| data29 = {{{organization|{{{organizations|}}}}}}
| class29 = org
| label30 = Agent
| data30 = {{{agent|}}}
| class30 = agent
| label31 = Known for
| data31 = {{{known for|{{{known_for|{{{known|}}}}}}}}}
| label32 = {{#if:{{{credits|}}}|Notable credit(s)|Notable work(s)}}
| data32 = {{#if:{{{credits|}}}|{{{credits}}}|{{{notable works|{{{notable_works|}}}}}}}}
| label33 = Style
| data33 = {{{style|}}}
| class33 = category
| label34 = Influenced by
| data34 = {{{influences|}}}
| label35 = Influenced
| data35 = {{{influenced|}}}
| label36 = Home town
| data36 = {{{home town|{{{home_town|}}}}}}
| label37 = Salary
| data37 = {{{salary|}}}
| label38 = Net worth
| data38 = {{{net worth|{{{net_worth|{{{networth|}}}}}}}}}
| label39 = Height
| data39 = {{{height|}}}
| label40 = Weight
| data40 = {{{weight|}}}
| label41 = Television
| data41 = {{{television|}}}
| label42 = Title
| data42 = {{{title|}}}
| class42 = title
| label43 = Term
| data43 = {{{term|}}}
| label44 = Predecessor
| data44 = {{{predecessor|}}}
| label45 = Successor
| data45 = {{{successor|}}}
| label46 = Political party
| data46 = {{{party|}}}
| class46 = org
| label47 = Political movement
| data47 = {{{movement|}}}
| class47 = category
| label48 = <span style="white-space:nowrap;">Opponent(s)</span>
| data48 = {{{opponents|}}}
| label49 = Board member of
| data49 = {{{boards|}}}
| label50 = Inkolo
| data50 = {{{religion|}}}
| class50 = category
| label51 = Denomination
| data51 = {{{denomination|}}}
| class51 = category
| label52 = Criminal charge
| data52 = {{{criminal charge|{{{criminal_charge|}}}}}}
| label53 = Criminal penalty
| data53 = {{{criminal penalty|{{{criminal_penalty|}}}}}}
| label54 = Criminal status
| data54 = {{{criminal status|{{{criminal_status|}}}}}}
| class54 = category
| label55 = Spouse
| data55 = {{{spouse|}}}
| label56 = Partner
| data56 = {{{partner|{{{domesticpartner|{{{domestic_partner|}}}}}}}}}
| label57 = Children
| data57 = {{{children|}}}
| label58 = Parents
| data58 = {{{parents|}}}
| label59 = Relatives
| data59 = {{{relations|{{{relatives|}}}}}}
| label60 = Family
| data60 = {{{family|}}}
| label61 = Call-sign
| data61 = {{{callsign|}}}
| label62 = Awards
| data62 = {{{awards|}}}
| data64 = {{{misc|{{{module|}}}}}}
| data65 = {{{misc2|{{{module2|}}}}}}
| data66 = {{{misc3|{{{module3|}}}}}}
| data67 = {{{misc4|{{{module4|}}}}}}
| data68 = {{{misc5|{{{module5|}}}}}}
| data69 = {{{misc6|{{{module6|}}}}}}
| label63 = Signature
| data63 = {{#if:{{{signature|}}}|[[File:{{{signature}}}|{{px|{{{signature_size|}}}|150px}}|alt={{{signature alt|{{{signature_alt|}}}}}}]]}}
| header70 = {{#if:{{{website|{{{homepage|{{{URL|}}}}}}}}}|Website}}
| data71 = {{{website|{{{homepage|{{{URL|}}}}}}}}}
| below = {{#if:{{{footnotes|}}}|'''Notes'''<div style="line-height:1.2em;">{{{footnotes}}}</div>}}
| belowstyle = border-top:1px solid #aaaaaa; text-align:left
}}{{#switch:{{ucfirst:{{{image|}}}}}
|Replace this image male.svg
|Replace_this_image_male.svg
|Replace this image female.svg
|Replace_this_image_female.svg=[[Category:Infobox person using placeholder image]]
}}<!--
-->{{#ifeq:{{NAMESPACE}}|{{ns:0}}|<!--
-->{{#if:{{{1|}}}|{{#ifeq:{{NAMESPACE}}|{{ns:0}}|[[Category:Infobox person using numbered parameter]]}}}}<!--
-->{{#if:{{{box_width|}}}|[[Category:Infobox person using boxwidth parameter]]}}<!--
-->{{#if:{{{death_date|}}}{{{death_place|}}}|{{#if:{{{salary|}}}{{{net worth|{{{net_worth|{{{networth|}}}}}}}}}|[[Category:Infobox person using certain parameters when dead]]}}}}<!--
-->}}{{#if:{{{pronunciation|}}}|[[Category:Biography template using pronunciation]]}}<!--
--><includeonly>{{ns0|{{#if:{{{signature|}}}|[[Category:Biography with signature]]}}[[Category:Articles with hCards]]}}</includeonly><noinclude>
<!---Please add metadata to the <includeonly> section at the bottom of the /doc subpage--->
{{documentation}}
</noinclude>
ba0qx5ab20kmw931sghutv64i4ufo49
12027
12026
2026-04-23T05:29:59Z
De-Invincible
36
12027
wikitext
text/x-wiki
{{Infobox
| child = {{lc:{{{embed}}}}}
| bodystyle = width: {{{box_width|22em}}}
| bodyclass = vcard
| title = {{#ifeq:{{lc:{{{embed}}}}}|yes|Musical career}}
| abovestyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| above = {{#ifeq:{{lc:{{{embed}}}}}|yes||{{#if:{{{Name|{{{name|}}}}}}|{{{Name|{{{name}}}}}}|<includeonly>{{BASEPAGENAME}}</includeonly>}}}}
| imageclass = {{Image class names|{{{Img|{{{image|}}}}}}}}
| image = {{#if:{{{Img|{{{image|}}}}}}|[[File:{{{Img|{{{image|}}}}}}|{{px|{{#ifeq:{{lc:{{{Landscape|{{{landscape|}}}}}}}}|yes|{{min|300|{{#if:{{#ifexpr:{{{Img_size|{{{image_size}}}}}}}}|300|{{{Img_size|{{{image_size}}}}}}}}}}x200px}}|{{{Img_size|{{{image_size|}}}}}}|frameless}}|alt={{{Img_alt|{{{alt|}}}}}}|{{{Img_capt|{{{caption|}}}}}}]]}}
| caption = {{{Img_capt|{{{caption|}}}}}}
| headerstyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| header1 = {{#if:{{{Img|{{{image|}}}}}}|Background information}}
| above = {{#if:{{{honorific prefix|{{{honorific_prefix|}}}}}}|<span class="honorific-prefix" style="font-size: small">{{{honorific prefix|{{{honorific_prefix|}}}}}}</span><br />}}<includeonly><span class="fn">{{{name|{{PAGENAME}}}}}</span></includeonly>{{#if:{{{honorific suffix|{{{honorific_suffix|}}}}}}|<br /><span class="honorific-suffix" style="font-size: small">{{{honorific suffix|{{{honorific_suffix|}}}}}}</span>}}
| image = {{#if:{{{image|}}}|[[File:{{{image}}}|{{px|{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}|frameless}}|alt={{{alt|}}}]]}}
| imageclass = {{image class names|{{{image}}}}}
| caption = {{{image caption|{{{caption|{{{image_caption|}}}}}}}}}
| label1 = Native name
| data1 = {{#if:{{{native_name|}}}|<span class="nickname" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}" xml:lang="{{{native_name_lang}}}"}}>{{{native_name}}}</span> }}
| label11 = Ubezalwa
| data11 = {{br separated entries|1={{#if:{{{birth_name|{{{birthname|}}}}}}|<span class="nickname">{{{birth_name|{{{birthname|}}}}}}</span>}}|2={{{birth_date|}}}|3={{#if:{{{birth_place|}}}|<span class="birthplace">{{{birth_place|}}}</span>}}}}
| label12 = Disappeared
| data12 = {{br separated entries|{{{disappeared_date|}}}|{{{disappeared_place|}}} }}
| label13 = Status
| data13 = {{{disappeared_status|}}}
| label14 = Ubefa
| data14 = {{br separated entries|1={{{death_date|}}}|2={{#if:{{{death_place|}}}|<span class="deathplace">{{{death_place|}}}</span>}}}}
| label15 = Cause of death
| data15 = {{{death cause|{{{death_cause|}}}}}}
| label16 = Body discovered
| data16 = {{{body discovered|{{{body_discovered|}}}}}}
| label17 = Resting place
| class17 = label
| data17 = {{br separated entries|{{{resting place|{{{resting_place|{{{restingplace|}}}}}}}}}|{{{resting place coordinates|{{{resting_place_coordinates|{{{restingplacecoordinates|}}}}}}}}}}}
| label18 = Monuments
| data18 = {{{monuments|}}}
| label19 = Ubehlala kwa-
| class19 = {{#if:{{{death_date|}}}{{{death_place|}}}||label}}
| data19 = {{{residence|}}}
| class20 = category
| label20 = Ubuzwe
| data20 = {{{nationality|}}}
| label21 = Ezenye amagama
| class21 = isidlaliso
| data21 = {{{other names|{{{other_names|{{{othername|{{{alias|}}}}}}}}}}}}
| class22 = category
| label22 = Ethnicity
| data22 = {{{ethnicity|}}}
| class23 = category
| label23 = Citizenship
| data23 = {{{citizenship|}}}
| label24 = Education
| data24 = {{{education|}}}
| label25 = ''[[Alma mater]]''
| data25 = {{{alma mater|{{{alma_mater|}}}}}}
| label26 = Occupation
| class26 = role
| data26 = {{{occupation|}}}
| label27 = Years active
| data27 = {{{years active|{{{years_active|{{{yearsactive|}}}}}}}}}
| label28 = Employer
| data28 = {{{employer|}}}
| class28 = org
| label29 = Organization
| data29 = {{{organization|{{{organizations|}}}}}}
| class29 = org
| label30 = Agent
| data30 = {{{agent|}}}
| class30 = agent
| label31 = Known for
| data31 = {{{known for|{{{known_for|{{{known|}}}}}}}}}
| label32 = {{#if:{{{credits|}}}|Notable credit(s)|Notable work(s)}}
| data32 = {{#if:{{{credits|}}}|{{{credits}}}|{{{notable works|{{{notable_works|}}}}}}}}
| label33 = Style
| data33 = {{{style|}}}
| class33 = category
| label34 = Influenced by
| data34 = {{{influences|}}}
| label35 = Influenced
| data35 = {{{influenced|}}}
| label36 = Home town
| data36 = {{{home town|{{{home_town|}}}}}}
| label37 = Salary
| data37 = {{{salary|}}}
| label38 = Net worth
| data38 = {{{net worth|{{{net_worth|{{{networth|}}}}}}}}}
| label39 = Height
| data39 = {{{height|}}}
| label40 = Weight
| data40 = {{{weight|}}}
| label41 = Television
| data41 = {{{television|}}}
| label42 = Title
| data42 = {{{title|}}}
| class42 = title
| label43 = Term
| data43 = {{{term|}}}
| label44 = Predecessor
| data44 = {{{predecessor|}}}
| label45 = Successor
| data45 = {{{successor|}}}
| label46 = Political party
| data46 = {{{party|}}}
| class46 = org
| label47 = Political movement
| data47 = {{{movement|}}}
| class47 = category
| label48 = <span style="white-space:nowrap;">Opponent(s)</span>
| data48 = {{{opponents|}}}
| label49 = Board member of
| data49 = {{{boards|}}}
| label50 = Inkolo
| data50 = {{{religion|}}}
| class50 = category
| label51 = Denomination
| data51 = {{{denomination|}}}
| class51 = category
| label52 = Criminal charge
| data52 = {{{criminal charge|{{{criminal_charge|}}}}}}
| label53 = Criminal penalty
| data53 = {{{criminal penalty|{{{criminal_penalty|}}}}}}
| label54 = Criminal status
| data54 = {{{criminal status|{{{criminal_status|}}}}}}
| class54 = category
| label55 = Spouse
| data55 = {{{spouse|}}}
| label56 = Partner
| data56 = {{{partner|{{{domesticpartner|{{{domestic_partner|}}}}}}}}}
| label57 = Children
| data57 = {{{children|}}}
| label58 = Parents
| data58 = {{{parents|}}}
| label59 = Relatives
| data59 = {{{relations|{{{relatives|}}}}}}
| label60 = Family
| data60 = {{{family|}}}
| label61 = Call-sign
| data61 = {{{callsign|}}}
| label62 = Awards
| data62 = {{{awards|}}}
| data64 = {{{misc|{{{module|}}}}}}
| data65 = {{{misc2|{{{module2|}}}}}}
| data66 = {{{misc3|{{{module3|}}}}}}
| data67 = {{{misc4|{{{module4|}}}}}}
| data68 = {{{misc5|{{{module5|}}}}}}
| data69 = {{{misc6|{{{module6|}}}}}}
| label63 = Signature
| data63 = {{#if:{{{signature|}}}|[[File:{{{signature}}}|{{px|{{{signature_size|}}}|150px}}|alt={{{signature alt|{{{signature_alt|}}}}}}]]}}
| header70 = {{#if:{{{website|{{{homepage|{{{URL|}}}}}}}}}|Website}}
| data71 = {{{website|{{{homepage|{{{URL|}}}}}}}}}
| below = {{#if:{{{footnotes|}}}|'''Notes'''<div style="line-height:1.2em;">{{{footnotes}}}</div>}}
| belowstyle = border-top:1px solid #aaaaaa; text-align:left
}}{{#switch:{{ucfirst:{{{image|}}}}}
|Replace this image male.svg
|Replace_this_image_male.svg
|Replace this image female.svg
|Replace_this_image_female.svg=[[Category:Infobox person using placeholder image]]
}}<!--
-->{{#ifeq:{{NAMESPACE}}|{{ns:0}}|<!--
-->{{#if:{{{1|}}}|{{#ifeq:{{NAMESPACE}}|{{ns:0}}|[[Category:Infobox person using numbered parameter]]}}}}<!--
-->{{#if:{{{box_width|}}}|[[Category:Infobox person using boxwidth parameter]]}}<!--
-->{{#if:{{{death_date|}}}{{{death_place|}}}|{{#if:{{{salary|}}}{{{net worth|{{{net_worth|{{{networth|}}}}}}}}}|[[Category:Infobox person using certain parameters when dead]]}}}}<!--
-->}}{{#if:{{{pronunciation|}}}|[[Category:Biography template using pronunciation]]}}<!--
--><includeonly>{{ns0|{{#if:{{{signature|}}}|[[Category:Biography with signature]]}}[[Category:Articles with hCards]]}}</includeonly><noinclude>
<!---Please add metadata to the <includeonly> section at the bottom of the /doc subpage--->
{{documentation}}
</noinclude>
2iuwh3lhjjcky3x94395129g2uv3h3f
12028
12027
2026-04-23T05:34:45Z
De-Invincible
36
12028
wikitext
text/x-wiki
{{Infobox
| child = {{lc:{{{embed}}}}}
| style = width: 300px
| bodyclass = vcard
| abovestyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| above = {{#ifeq:{{lc:{{{embed}}}}}|yes||{{#if:{{{Name|{{{name|}}}}}}|{{{Name|{{{name}}}}}}|<includeonly>{{BASEPAGENAME}}</includeonly>}}}}
| imageclass = {{Image class names|{{{Img|{{{image|}}}}}}}}
| image = {{#if:{{{Img|{{{image|}}}}}}|[[File:{{{Img|{{{image|}}}}}}|{{px|{{#ifeq:{{lc:{{{Landscape|{{{landscape|}}}}}}}}|yes|{{min|300|{{#if:{{#ifexpr:{{{Img_size|{{{image_size}}}}}}}}|300|{{{Img_size|{{{image_size}}}}}}}}}}x200px}}|{{{Img_size|{{{image_size|}}}}}}|frameless}}|alt={{{Img_alt|{{{alt|}}}}}}|{{{Img_capt|{{{caption|}}}}}}]]}}
| caption = {{{Img_capt|{{{caption|}}}}}}
| headerstyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| header1 = {{#if:{{{Img|{{{image|}}}}}}|Background information}}
| above = {{#if:{{{honorific prefix|{{{honorific_prefix|}}}}}}|<span class="honorific-prefix" style="font-size: small">{{{honorific prefix|{{{honorific_prefix|}}}}}}</span><br />}}<includeonly><span class="fn">{{{name|{{PAGENAME}}}}}</span></includeonly>{{#if:{{{honorific suffix|{{{honorific_suffix|}}}}}}|<br /><span class="honorific-suffix" style="font-size: small">{{{honorific suffix|{{{honorific_suffix|}}}}}}</span>}}
| image = {{#if:{{{image|}}}|[[File:{{{image}}}|{{px|{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}|frameless}}|alt={{{alt|}}}]]}}
| imageclass = {{image class names|{{{image}}}}}
| caption = {{{image caption|{{{caption|{{{image_caption|}}}}}}}}}
| label1 = Native name
| data1 = {{#if:{{{native_name|}}}|<span class="nickname" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}" xml:lang="{{{native_name_lang}}}"}}>{{{native_name}}}</span> }}
| label11 = Ubezalwa
| data11 = {{br separated entries|1={{#if:{{{birth_name|{{{birthname|}}}}}}|<span class="nickname">{{{birth_name|{{{birthname|}}}}}}</span>}}|2={{{birth_date|}}}|3={{#if:{{{birth_place|}}}|<span class="birthplace">{{{birth_place|}}}</span>}}}}
| label12 = Disappeared
| data12 = {{br separated entries|{{{disappeared_date|}}}|{{{disappeared_place|}}} }}
| label13 = Status
| data13 = {{{disappeared_status|}}}
| label14 = Ubefa
| data14 = {{br separated entries|1={{{death_date|}}}|2={{#if:{{{death_place|}}}|<span class="deathplace">{{{death_place|}}}</span>}}}}
| label15 = Cause of death
| data15 = {{{death cause|{{{death_cause|}}}}}}
| label16 = Body discovered
| data16 = {{{body discovered|{{{body_discovered|}}}}}}
| label17 = Resting place
| class17 = label
| data17 = {{br separated entries|{{{resting place|{{{resting_place|{{{restingplace|}}}}}}}}}|{{{resting place coordinates|{{{resting_place_coordinates|{{{restingplacecoordinates|}}}}}}}}}}}
| label18 = Monuments
| data18 = {{{monuments|}}}
| label19 = Ubehlala kwa-
| class19 = {{#if:{{{death_date|}}}{{{death_place|}}}||label}}
| data19 = {{{residence|}}}
| class20 = category
| label20 = Ubuzwe
| data20 = {{{nationality|}}}
| label21 = Ezenye amagama
| class21 = isidlaliso
| data21 = {{{other names|{{{other_names|{{{othername|{{{alias|}}}}}}}}}}}}
| class22 = category
| label22 = Ethnicity
| data22 = {{{ethnicity|}}}
| class23 = category
| label23 = Citizenship
| data23 = {{{citizenship|}}}
| label24 = Education
| data24 = {{{education|}}}
| label25 = ''[[Alma mater]]''
| data25 = {{{alma mater|{{{alma_mater|}}}}}}
| label26 = Occupation
| class26 = role
| data26 = {{{occupation|}}}
| label27 = Years active
| data27 = {{{years active|{{{years_active|{{{yearsactive|}}}}}}}}}
| label28 = Employer
| data28 = {{{employer|}}}
| class28 = org
| label29 = Organization
| data29 = {{{organization|{{{organizations|}}}}}}
| class29 = org
| label30 = Agent
| data30 = {{{agent|}}}
| class30 = agent
| label31 = Known for
| data31 = {{{known for|{{{known_for|{{{known|}}}}}}}}}
| label32 = {{#if:{{{credits|}}}|Notable credit(s)|Notable work(s)}}
| data32 = {{#if:{{{credits|}}}|{{{credits}}}|{{{notable works|{{{notable_works|}}}}}}}}
| label33 = Style
| data33 = {{{style|}}}
| class33 = category
| label34 = Influenced by
| data34 = {{{influences|}}}
| label35 = Influenced
| data35 = {{{influenced|}}}
| label36 = Home town
| data36 = {{{home town|{{{home_town|}}}}}}
| label37 = Salary
| data37 = {{{salary|}}}
| label38 = Net worth
| data38 = {{{net worth|{{{net_worth|{{{networth|}}}}}}}}}
| label39 = Height
| data39 = {{{height|}}}
| label40 = Weight
| data40 = {{{weight|}}}
| label41 = Television
| data41 = {{{television|}}}
| label42 = Title
| data42 = {{{title|}}}
| class42 = title
| label43 = Term
| data43 = {{{term|}}}
| label44 = Predecessor
| data44 = {{{predecessor|}}}
| label45 = Successor
| data45 = {{{successor|}}}
| label46 = Political party
| data46 = {{{party|}}}
| class46 = org
| label47 = Political movement
| data47 = {{{movement|}}}
| class47 = category
| label48 = <span style="white-space:nowrap;">Opponent(s)</span>
| data48 = {{{opponents|}}}
| label49 = Board member of
| data49 = {{{boards|}}}
| label50 = Inkolo
| data50 = {{{religion|}}}
| class50 = category
| label51 = Denomination
| data51 = {{{denomination|}}}
| class51 = category
| label52 = Criminal charge
| data52 = {{{criminal charge|{{{criminal_charge|}}}}}}
| label53 = Criminal penalty
| data53 = {{{criminal penalty|{{{criminal_penalty|}}}}}}
| label54 = Criminal status
| data54 = {{{criminal status|{{{criminal_status|}}}}}}
| class54 = category
| label55 = Spouse
| data55 = {{{spouse|}}}
| label56 = Partner
| data56 = {{{partner|{{{domesticpartner|{{{domestic_partner|}}}}}}}}}
| label57 = Children
| data57 = {{{children|}}}
| label58 = Parents
| data58 = {{{parents|}}}
| label59 = Relatives
| data59 = {{{relations|{{{relatives|}}}}}}
| label60 = Family
| data60 = {{{family|}}}
| label61 = Call-sign
| data61 = {{{callsign|}}}
| label62 = Awards
| data62 = {{{awards|}}}
| data64 = {{{misc|{{{module|}}}}}}
| data65 = {{{misc2|{{{module2|}}}}}}
| data66 = {{{misc3|{{{module3|}}}}}}
| data67 = {{{misc4|{{{module4|}}}}}}
| data68 = {{{misc5|{{{module5|}}}}}}
| data69 = {{{misc6|{{{module6|}}}}}}
| label63 = Signature
| data63 = {{#if:{{{signature|}}}|[[File:{{{signature}}}|{{px|{{{signature_size|}}}|150px}}|alt={{{signature alt|{{{signature_alt|}}}}}}]]}}
| header70 = {{#if:{{{website|{{{homepage|{{{URL|}}}}}}}}}|Website}}
| data71 = {{{website|{{{homepage|{{{URL|}}}}}}}}}
| below = {{#if:{{{footnotes|}}}|'''Notes'''<div style="line-height:1.2em;">{{{footnotes}}}</div>}}
| belowstyle = border-top:1px solid #aaaaaa; text-align:left
}}{{#switch:{{ucfirst:{{{image|}}}}}
|Replace this image male.svg
|Replace_this_image_male.svg
|Replace this image female.svg
|Replace_this_image_female.svg=[[Category:Infobox person using placeholder image]]
}}<!--
-->{{#ifeq:{{NAMESPACE}}|{{ns:0}}|<!--
-->{{#if:{{{1|}}}|{{#ifeq:{{NAMESPACE}}|{{ns:0}}|[[Category:Infobox person using numbered parameter]]}}}}<!--
-->{{#if:{{{box_width|}}}|[[Category:Infobox person using boxwidth parameter]]}}<!--
-->{{#if:{{{death_date|}}}{{{death_place|}}}|{{#if:{{{salary|}}}{{{net worth|{{{net_worth|{{{networth|}}}}}}}}}|[[Category:Infobox person using certain parameters when dead]]}}}}<!--
-->}}{{#if:{{{pronunciation|}}}|[[Category:Biography template using pronunciation]]}}<!--
--><includeonly>{{ns0|{{#if:{{{signature|}}}|[[Category:Biography with signature]]}}[[Category:Articles with hCards]]}}</includeonly><noinclude>
<!---Please add metadata to the <includeonly> section at the bottom of the /doc subpage--->
{{documentation}}
</noinclude>
ru1myfcunvvt0df3drg79gsi98wl5pj
12029
12028
2026-04-23T05:38:37Z
De-Invincible
36
12029
wikitext
text/x-wiki
{{Infobox
| bodyclass = biography vcard
| bodystyle = {{#if:{{{box_width|}}}|width:{{{box_width}}};}}
| abovestyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| headerstyle = background-color: {{Infobox person/color|{{{Background|{{{background|}}}}}}}}
| above = {{#if:{{{honorific prefix|{{{honorific_prefix|}}}}}}|<span class="honorific-prefix" style="font-size: small">{{{honorific prefix|{{{honorific_prefix|}}}}}}</span><br />}}<includeonly><span class="fn">{{{name|{{PAGENAME}}}}}</span></includeonly>{{#if:{{{honorific suffix|{{{honorific_suffix|}}}}}}|<br /><span class="honorific-suffix" style="font-size: small">{{{honorific suffix|{{{honorific_suffix|}}}}}}</span>}}
| image = {{#if:{{{image|}}}|[[File:{{{image}}}|{{px|{{{image size|{{{image_size|{{{imagesize|}}}}}}}}}|frameless}}|alt={{{alt|}}}]]}}
| imageclass = {{image class names|{{{image}}}}}
| caption = {{{image caption|{{{caption|{{{image_caption|}}}}}}}}}
| label1 = Native name
| data1 = {{#if:{{{native_name|}}}|<span class="nickname" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}" xml:lang="{{{native_name_lang}}}"}}>{{{native_name}}}</span> }}
| label11 = Ubezalwa
| data11 = {{br separated entries|1={{#if:{{{birth_name|{{{birthname|}}}}}}|<span class="nickname">{{{birth_name|{{{birthname|}}}}}}</span>}}|2={{{birth_date|}}}|3={{#if:{{{birth_place|}}}|<span class="birthplace">{{{birth_place|}}}</span>}}}}
| label12 = Disappeared
| data12 = {{br separated entries|{{{disappeared_date|}}}|{{{disappeared_place|}}} }}
| label13 = Status
| data13 = {{{disappeared_status|}}}
| label14 = Ubefa
| data14 = {{br separated entries|1={{{death_date|}}}|2={{#if:{{{death_place|}}}|<span class="deathplace">{{{death_place|}}}</span>}}}}
| label15 = Cause of death
| data15 = {{{death cause|{{{death_cause|}}}}}}
| label16 = Body discovered
| data16 = {{{body discovered|{{{body_discovered|}}}}}}
| label17 = Resting place
| class17 = label
| data17 = {{br separated entries|{{{resting place|{{{resting_place|{{{restingplace|}}}}}}}}}|{{{resting place coordinates|{{{resting_place_coordinates|{{{restingplacecoordinates|}}}}}}}}}}}
| label18 = Monuments
| data18 = {{{monuments|}}}
| label19 = Ubehlala kwa-
| class19 = {{#if:{{{death_date|}}}{{{death_place|}}}||label}}
| data19 = {{{residence|}}}
| class20 = category
| label20 = Ubuzwe
| data20 = {{{nationality|}}}
| label21 = Ezenye amagama
| class21 = isidlaliso
| data21 = {{{other names|{{{other_names|{{{othername|{{{alias|}}}}}}}}}}}}
| class22 = category
| label22 = Ethnicity
| data22 = {{{ethnicity|}}}
| class23 = category
| label23 = Citizenship
| data23 = {{{citizenship|}}}
| label24 = Education
| data24 = {{{education|}}}
| label25 = ''[[Alma mater]]''
| data25 = {{{alma mater|{{{alma_mater|}}}}}}
| label26 = Occupation
| class26 = role
| data26 = {{{occupation|}}}
| label27 = Years active
| data27 = {{{years active|{{{years_active|{{{yearsactive|}}}}}}}}}
| label28 = Employer
| data28 = {{{employer|}}}
| class28 = org
| label29 = Organization
| data29 = {{{organization|{{{organizations|}}}}}}
| class29 = org
| label30 = Agent
| data30 = {{{agent|}}}
| class30 = agent
| label31 = Known for
| data31 = {{{known for|{{{known_for|{{{known|}}}}}}}}}
| label32 = {{#if:{{{credits|}}}|Notable credit(s)|Notable work(s)}}
| data32 = {{#if:{{{credits|}}}|{{{credits}}}|{{{notable works|{{{notable_works|}}}}}}}}
| label33 = Style
| data33 = {{{style|}}}
| class33 = category
| label34 = Influenced by
| data34 = {{{influences|}}}
| label35 = Influenced
| data35 = {{{influenced|}}}
| label36 = Home town
| data36 = {{{home town|{{{home_town|}}}}}}
| label37 = Salary
| data37 = {{{salary|}}}
| label38 = Net worth
| data38 = {{{net worth|{{{net_worth|{{{networth|}}}}}}}}}
| label39 = Height
| data39 = {{{height|}}}
| label40 = Weight
| data40 = {{{weight|}}}
| label41 = Television
| data41 = {{{television|}}}
| label42 = Title
| data42 = {{{title|}}}
| class42 = title
| label43 = Term
| data43 = {{{term|}}}
| label44 = Predecessor
| data44 = {{{predecessor|}}}
| label45 = Successor
| data45 = {{{successor|}}}
| label46 = Political party
| data46 = {{{party|}}}
| class46 = org
| label47 = Political movement
| data47 = {{{movement|}}}
| class47 = category
| label48 = <span style="white-space:nowrap;">Opponent(s)</span>
| data48 = {{{opponents|}}}
| label49 = Board member of
| data49 = {{{boards|}}}
| label50 = Inkolo
| data50 = {{{religion|}}}
| class50 = category
| label51 = Denomination
| data51 = {{{denomination|}}}
| class51 = category
| label52 = Criminal charge
| data52 = {{{criminal charge|{{{criminal_charge|}}}}}}
| label53 = Criminal penalty
| data53 = {{{criminal penalty|{{{criminal_penalty|}}}}}}
| label54 = Criminal status
| data54 = {{{criminal status|{{{criminal_status|}}}}}}
| class54 = category
| label55 = Spouse
| data55 = {{{spouse|}}}
| label56 = Partner
| data56 = {{{partner|{{{domesticpartner|{{{domestic_partner|}}}}}}}}}
| label57 = Children
| data57 = {{{children|}}}
| label58 = Parents
| data58 = {{{parents|}}}
| label59 = Relatives
| data59 = {{{relations|{{{relatives|}}}}}}
| label60 = Family
| data60 = {{{family|}}}
| label61 = Call-sign
| data61 = {{{callsign|}}}
| label62 = Awards
| data62 = {{{awards|}}}
| data64 = {{{misc|{{{module|}}}}}}
| data65 = {{{misc2|{{{module2|}}}}}}
| data66 = {{{misc3|{{{module3|}}}}}}
| data67 = {{{misc4|{{{module4|}}}}}}
| data68 = {{{misc5|{{{module5|}}}}}}
| data69 = {{{misc6|{{{module6|}}}}}}
| label63 = Signature
| data63 = {{#if:{{{signature|}}}|[[File:{{{signature}}}|{{px|{{{signature_size|}}}|150px}}|alt={{{signature alt|{{{signature_alt|}}}}}}]]}}
| header70 = {{#if:{{{website|{{{homepage|{{{URL|}}}}}}}}}|Website}}
| data71 = {{{website|{{{homepage|{{{URL|}}}}}}}}}
| below = {{#if:{{{footnotes|}}}|'''Notes'''<div style="line-height:1.2em;">{{{footnotes}}}</div>}}
| belowstyle = border-top:1px solid #aaaaaa; text-align:left
}}{{#switch:{{ucfirst:{{{image|}}}}}
|Replace this image male.svg
|Replace_this_image_male.svg
|Replace this image female.svg
|Replace_this_image_female.svg=[[Category:Infobox person using placeholder image]]
}}<!--
-->{{#ifeq:{{NAMESPACE}}|{{ns:0}}|<!--
-->{{#if:{{{1|}}}|{{#ifeq:{{NAMESPACE}}|{{ns:0}}|[[Category:Infobox person using numbered parameter]]}}}}<!--
-->{{#if:{{{box_width|}}}|[[Category:Infobox person using boxwidth parameter]]}}<!--
-->{{#if:{{{death_date|}}}{{{death_place|}}}|{{#if:{{{salary|}}}{{{net worth|{{{net_worth|{{{networth|}}}}}}}}}|[[Category:Infobox person using certain parameters when dead]]}}}}<!--
-->}}{{#if:{{{pronunciation|}}}|[[Category:Biography template using pronunciation]]}}<!--
--><includeonly>{{ns0|{{#if:{{{signature|}}}|[[Category:Biography with signature]]}}[[Category:Articles with hCards]]}}</includeonly><noinclude>
<!---Please add metadata to the <includeonly> section at the bottom of the /doc subpage--->
{{documentation}}
</noinclude>
ktlnn1fvahejry1bzfino8nv9vfqwlc
12031
12029
2026-04-23T06:00:45Z
De-Invincible
36
Reverted edits by [[Special:Contributions/De-Invincible|De-Invincible]] ([[User talk:De-Invincible|talk]]) to last revision by [[User:Minorax|Minorax]]
9562
wikitext
text/x-wiki
<div style="
border: 1px solid #aaa;
background-color: var(--background-color-base, #f9f9f9);
width: 300px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
border-radius: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
overflow: hidden;
line-height: 1.5;
">
</div>
<!-- Header (Language Name) -->
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:var(--color-base, #000);
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
">
{{{name|}}}
</div>
<!-- Subheader under Name -->
{{#if: {{{subheader|}}} |
<div style="text-align:center; font-weight:bold; padding:3px; margin-top:5px; background-color:
{{#switch: {{{type|}}}
| person = #e6f4ea <!-- lighter green -->
| politician = #d9e4f7 <!-- lighter blue -->
| artist = #fbeaea <!-- lighter red/pink -->
| #default = #f2f2f2}};
">{{{subheader}}}
</div> }}
<!-- Image -->
{{#if: {{{image|}}} |
<div style="text-align:center; margin:10px 0;">
[[Payìil:{{{image}}}|{{{image_size|250}}}px]]
{{#if: {{{caption|}}} |
<div style="font-size:90%; font-style:italic; color:#555; margin-top:4px;">{{{caption}}}</div> }}
</div> }}
<!-- Table for details -->
<table style="width:100%; border-collapse:collapse; font-size:90%;">
{{#if: {{{birth_name|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Sim:</th><td style="border-top:1px solid #ddd;">{{{birth_name}}}</td></tr> }}
{{#if: {{{alias|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Alias:</th><td style="border-top:1px solid #ddd;">{{{alias}}}</td></tr> }}
{{#if: {{{birth_date|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Làawàa:</th><td style="border-top:1px solid #ddd;">{{{birth_date}}}<br>{{{birth_place}}}</td></tr> }}
{{#if: {{{death_date|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Mèetò:</th><td style="border-top:1px solid #ddd;">{{{death_date}}}<br>{{{death_place}}}</td></tr> }}
{{#if: {{{nationality|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Ƴali:</th><td style="border-top:1px solid #ddd;">{{{nationality}}}</td></tr> }}
{{#if: {{{education|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Karàtù:</th><td style="border-top:1px solid #ddd;">{{{education}}}</td></tr> }}
{{#if: {{{occupation|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Wàanò:</th><td style="border-top:1px solid var(--border-color-subtle, #ddd);">{{{occupation}}}</td></tr> }}
{{#if: {{{spouse|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid var(--border-color-subtle, #ddd);">Mìzī/Mendò:</th><td style="border-top:1px solid #ddd;">{{{spouse}}}</td></tr> }}
{{#if: {{{children|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid #ddd;">Lèewài:</th><td style="border-top:1px solid #ddd;">{{{children}}}</td></tr> }}
{{#if: {{{awards|}}} |
<tr><th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid var(--border-color-subtle, #ddd);">Bàrànkàu:</th><td style="border-top:1px solid #ddd;">{{{awards}}}</td></tr> }}
{{#if: {{{website|}}} |
<tr>
<th scope="row" style="width:90px; text-align:left; vertical-align:top; border-top:1px solid var(--border-color-subtle, #ddd);">Sāwana:</th>
<td style="border-top:1px solid var(--border-color-subtle, #ddd);">
[{{{website}}} {{{website}}}]
</td>
</tr> }}
</table>
<noinclude>
== Usage ==
<pre>
{{Infobox person
| type = person/politician/artist
| name =
| subheader =
| image =
| caption =
| birth_name =
| alias =
| birth_date =
| birth_place =
| death_date =
| death_place =
| nationality =
| education =
| occupation =
| spouse =
| children =
| awards =
| website =
}}
</pre>
{{Documentation}}
[[Sashì:Tampilet mà Infobox]]
</noinclude>
lcbjaxoobr1bhhr8mxy6h1dxect3elj
12047
12031
2026-04-23T06:43:46Z
De-Invincible
36
12047
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:260px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span>
}}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} |
<span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:5px 0; color:#fff;">Personal details</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{pronunciation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div>
<div style="flex: 1;">{{{pronunciation}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Born:</div>
<div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div>
</div> }}
{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div>
<div style="flex: 1;">{{{baptised}}}</div>
</div> }} }}
{{#if: {{{other_names|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Other names:</div>
<div style="flex: 1;">{{{other_names}}}</div>
</div> }}
{{#if: {{{siglum|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div>
<div style="flex: 1;">{{{siglum}}}</div>
</div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Status</div>
}}
{{#if: {{{disappeared_date|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div>
<div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Died:</div>
<div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div>
</div> }}
{{#if: {{{body_discovered|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Body found:</div>
<div style="flex: 1;">{{{body_discovered}}}</div>
</div> }}
{{#if: {{{resting_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div>
<div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div>
</div> }}
{{#if: {{{burial_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div>
<div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div>
</div> }}
{{#if: {{{monuments|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div>
<div style="flex: 1;">{{{monuments}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Professional life</div>
}}
{{#if: {{{citizenship|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div>
<div style="flex: 1;">{{{citizenship}}}</div>
</div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Education:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{alma_mater|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div>
<div style="flex: 1;">{{{alma_mater}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{era|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Era:</div>
<div style="flex: 1;">{{{era}}}</div>
</div> }}
{{#if: {{{employer|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Employer:</div>
<div style="flex: 1;">{{{employer}}}</div>
</div> }}
{{#if: {{{organization|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Organization:</div>
<div style="flex: 1;">{{{organization}}}</div>
</div> }}
{{#if: {{{agent|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Agent:</div>
<div style="flex: 1;">{{{agent}}}</div>
</div> }}
{{#if: {{{known_for|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Known for:</div>
<div style="flex: 1;">{{{known_for}}}</div>
</div> }}
{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div>
<div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div>
</div> }}
{{#if: {{{style|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Style:</div>
<div style="flex: 1;">{{{style}}}</div>
</div> }}
{{#if: {{{television|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Television:</div>
<div style="flex: 1;">{{{television}}}</div>
</div> }}
{{#if: {{{title|}}}{{{office|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div>
<div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div>
</div> }}
{{#if: {{{predecessor|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div>
<div style="flex: 1;">{{{predecessor}}}</div>
</div> }}
{{#if: {{{successor|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Successor:</div>
<div style="flex: 1;">{{{successor}}}</div>
</div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Politics & Legal</div>
}}
{{#if: {{{party|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Party:</div>
<div style="flex: 1;">{{{party}}}</div>
</div> }}
{{#if: {{{otherparty|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Other party:</div>
<div style="flex: 1;">{{{otherparty}}}</div>
</div> }}
{{#if: {{{movement|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Movement:</div>
<div style="flex: 1;">{{{movement}}}</div>
</div> }}
{{#if: {{{opponents|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div>
<div style="flex: 1;">{{{opponents}}}</div>
</div> }}
{{#if: {{{criminal_charges|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div>
<div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Children:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div>
<div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div>
</div> }}
{{#if: {{{relatives|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div>
<div style="flex: 1;">{{{relatives}}}</div>
</div> }}
{{#if: {{{family|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Family:</div>
<div style="flex: 1;">{{{family}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Other information</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Awards:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{height|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Height:</div>
<div style="flex: 1;">{{{height}}}</div>
</div> }}
{{#if: {{{callsign|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div>
<div style="flex: 1;">{{{callsign}}}</div>
</div> }}
{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>
}}
{{#if: {{{footnotes|}}} |
<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>
}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
n3kfclnb8qno2wycio9gl530kl21o78
12049
12047
2026-04-23T06:46:12Z
De-Invincible
36
12049
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:260px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span>
}}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} |
<span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:5px 0; color:#fff;">Personal details</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{pronunciation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div>
<div style="flex: 1;">{{{pronunciation}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Born:</div>
<div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div>
</div> }}
{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div>
<div style="flex: 1;">{{{baptised}}}</div>
</div> }} }}
{{#if: {{{other_names|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Other names:</div>
<div style="flex: 1;">{{{other_names}}}</div>
</div> }}
{{#if: {{{siglum|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div>
<div style="flex: 1;">{{{siglum}}}</div>
</div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Status</div>
}}
{{#if: {{{disappeared_date|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div>
<div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Died:</div>
<div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div>
</div> }}
{{#if: {{{body_discovered|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Body found:</div>
<div style="flex: 1;">{{{body_discovered}}}</div>
</div> }}
{{#if: {{{resting_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div>
<div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div>
</div> }}
{{#if: {{{burial_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div>
<div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div>
</div> }}
{{#if: {{{monuments|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div>
<div style="flex: 1;">{{{monuments}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Professional life</div>
}}
{{#if: {{{citizenship|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div>
<div style="flex: 1;">{{{citizenship}}}</div>
</div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Education:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{alma_mater|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div>
<div style="flex: 1;">{{{alma_mater}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{era|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Era:</div>
<div style="flex: 1;">{{{era}}}</div>
</div> }}
{{#if: {{{employer|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Employer:</div>
<div style="flex: 1;">{{{employer}}}</div>
</div> }}
{{#if: {{{organization|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Organization:</div>
<div style="flex: 1;">{{{organization}}}</div>
</div> }}
{{#if: {{{agent|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Agent:</div>
<div style="flex: 1;">{{{agent}}}</div>
</div> }}
{{#if: {{{known_for|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Known for:</div>
<div style="flex: 1;">{{{known_for}}}</div>
</div> }}
{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div>
<div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div>
</div> }}
{{#if: {{{style|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Style:</div>
<div style="flex: 1;">{{{style}}}</div>
</div> }}
{{#if: {{{television|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Television:</div>
<div style="flex: 1;">{{{television}}}</div>
</div> }}
{{#if: {{{title|}}}{{{office|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div>
<div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div>
</div> }}
{{#if: {{{predecessor|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div>
<div style="flex: 1;">{{{predecessor}}}</div>
</div> }}
{{#if: {{{successor|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Successor:</div>
<div style="flex: 1;">{{{successor}}}</div>
</div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Politics & Legal</div>
}}
{{#if: {{{party|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Party:</div>
<div style="flex: 1;">{{{party}}}</div>
</div> }}
{{#if: {{{otherparty|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Other party:</div>
<div style="flex: 1;">{{{otherparty}}}</div>
</div> }}
{{#if: {{{movement|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Movement:</div>
<div style="flex: 1;">{{{movement}}}</div>
</div> }}
{{#if: {{{opponents|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div>
<div style="flex: 1;">{{{opponents}}}</div>
</div> }}
{{#if: {{{criminal_charges|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div>
<div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Children:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div>
<div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div>
</div> }}
{{#if: {{{relatives|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div>
<div style="flex: 1;">{{{relatives}}}</div>
</div> }}
{{#if: {{{family|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Family:</div>
<div style="flex: 1;">{{{family}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Other information</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Awards:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{height|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Height:</div>
<div style="flex: 1;">{{{height}}}</div>
</div> }}
{{#if: {{{callsign|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div>
<div style="flex: 1;">{{{callsign}}}</div>
</div> }}
{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>
}}
{{#if: {{{footnotes|}}} |
<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>
}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
mqpt8l6soql0i6g1a0snhwsg1wrfpi3
12054
12049
2026-04-23T06:50:52Z
De-Invincible
36
12054
wikitext
text/x-wiki
<div style="
border:1px solid #aaa;
background-color:#f9f9f9;
width:305px;
float:right;
margin:0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size:90%;
">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:0.3px 0;
line-height:1;
word-wrap:break-word;
hyphens:auto;
background-color:#f9f9f9;
">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span>
}}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} |
<span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>
}}
{{#if: {{{image|}}} |
<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |
<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>
}}
</div>
}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:5px 0; color:#fff;">Personal details</div>
}}
{{#if: {{{native_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Native name:</div>
<div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div>
</div> }}
{{#if: {{{birth_name|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div>
<div style="flex: 1;">{{{birth_name}}}</div>
</div> }}
{{#if: {{{pronunciation|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div>
<div style="flex: 1;">{{{pronunciation}}}</div>
</div> }}
{{#if: {{{birth_date|}}}{{{birth_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Born:</div>
<div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div>
</div> }}
{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div>
<div style="flex: 1;">{{{baptised}}}</div>
</div> }} }}
{{#if: {{{other_names|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Other names:</div>
<div style="flex: 1;">{{{other_names}}}</div>
</div> }}
{{#if: {{{siglum|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div>
<div style="flex: 1;">{{{siglum}}}</div>
</div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Status</div>
}}
{{#if: {{{disappeared_date|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div>
<div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div>
</div> }}
{{#if: {{{death_date|}}}{{{death_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Died:</div>
<div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div>
</div> }}
{{#if: {{{body_discovered|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Body found:</div>
<div style="flex: 1;">{{{body_discovered}}}</div>
</div> }}
{{#if: {{{resting_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div>
<div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div>
</div> }}
{{#if: {{{burial_place|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div>
<div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div>
</div> }}
{{#if: {{{monuments|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div>
<div style="flex: 1;">{{{monuments}}}</div>
</div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Professional life</div>
}}
{{#if: {{{citizenship|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div>
<div style="flex: 1;">{{{citizenship}}}</div>
</div> }}
{{#if: {{{education|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Education:</div>
<div style="flex: 1;">{{{education}}}</div>
</div> }}
{{#if: {{{alma_mater|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div>
<div style="flex: 1;">{{{alma_mater}}}</div>
</div> }}
{{#if: {{{years_active|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Years active:</div>
<div style="flex: 1;">{{{years_active}}}</div>
</div> }}
{{#if: {{{era|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Era:</div>
<div style="flex: 1;">{{{era}}}</div>
</div> }}
{{#if: {{{employer|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Employer:</div>
<div style="flex: 1;">{{{employer}}}</div>
</div> }}
{{#if: {{{organization|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Organization:</div>
<div style="flex: 1;">{{{organization}}}</div>
</div> }}
{{#if: {{{agent|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Agent:</div>
<div style="flex: 1;">{{{agent}}}</div>
</div> }}
{{#if: {{{known_for|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Known for:</div>
<div style="flex: 1;">{{{known_for}}}</div>
</div> }}
{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div>
<div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div>
</div> }}
{{#if: {{{style|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Style:</div>
<div style="flex: 1;">{{{style}}}</div>
</div> }}
{{#if: {{{television|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Television:</div>
<div style="flex: 1;">{{{television}}}</div>
</div> }}
{{#if: {{{title|}}}{{{office|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div>
<div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div>
</div> }}
{{#if: {{{predecessor|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div>
<div style="flex: 1;">{{{predecessor}}}</div>
</div> }}
{{#if: {{{successor|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Successor:</div>
<div style="flex: 1;">{{{successor}}}</div>
</div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Politics & Legal</div>
}}
{{#if: {{{party|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Party:</div>
<div style="flex: 1;">{{{party}}}</div>
</div> }}
{{#if: {{{otherparty|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Other party:</div>
<div style="flex: 1;">{{{otherparty}}}</div>
</div> }}
{{#if: {{{movement|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Movement:</div>
<div style="flex: 1;">{{{movement}}}</div>
</div> }}
{{#if: {{{opponents|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div>
<div style="flex: 1;">{{{opponents}}}</div>
</div> }}
{{#if: {{{criminal_charges|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div>
<div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div>
</div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Family</div>
}}
{{#if: {{{spouse|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div>
<div style="flex: 1;">{{{spouse}}}</div>
</div> }}
{{#if: {{{partner|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Partner:</div>
<div style="flex: 1;">{{{partner}}}</div>
</div> }}
{{#if: {{{children|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Children:</div>
<div style="flex: 1;">{{{children}}}</div>
</div> }}
{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div>
<div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div>
</div> }}
{{#if: {{{relatives|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div>
<div style="flex: 1;">{{{relatives}}}</div>
</div> }}
{{#if: {{{family|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Family:</div>
<div style="flex: 1;">{{{family}}}</div>
</div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |
<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:10px 0 5px 0; color:#fff;">Other information</div>
}}
{{#if: {{{awards|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Awards:</div>
<div style="flex: 1;">{{{awards}}}</div>
</div> }}
{{#if: {{{height|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Height:</div>
<div style="flex: 1;">{{{height}}}</div>
</div> }}
{{#if: {{{callsign|}}} |
<div style="display: flex; margin-bottom: 4px;">
<div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div>
<div style="flex: 1;">{{{callsign}}}</div>
</div> }}
{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}
{{#if: {{{signature|}}} |
<div style="text-align: center; margin-top: 8px;">
<strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}
</div>
}}
{{#if: {{{website|}}} |
<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>
}}
{{#if: {{{footnotes|}}} |
<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>
}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
qfdn0n5u6yb9h0lol8og2aeel0j7qla
12056
12054
2026-04-23T06:55:45Z
De-Invincible
36
12056
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:305px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="text-align:center; font-size:130%; font-weight:bold; color:#000; padding:0.3px 0; line-height:1; word-wrap:break-word; hyphens:auto; background-color:#f9f9f9;">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin-top:5px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,0.25);">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:2px 0 5px 0; color:#fff;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:8px 0 5px 0; color:#fff;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:8px 0 5px 0; color:#fff;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:8px 0 5px 0; color:#fff;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:8px 0 5px 0; color:#fff;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#B2BEB5; padding:3px; margin:8px 0 5px 0; color:#fff;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
11ea3uvxkv7ce4lczqevby0l6i9ehy4
12059
12056
2026-04-23T06:59:57Z
De-Invincible
36
12059
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:305px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="text-align:center; font-size:130%; font-weight:bold; color:#000; padding:0.3px 0; line-height:1; word-wrap:break-word; hyphens:auto; background-color:#f9f9f9;">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #aaa; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:2px 0 5px 0; color:#000;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
dw52gh319w8qjnqpj45i8n303g2otvh
12060
12059
2026-04-23T07:04:09Z
De-Invincible
36
12060
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:305px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="text-align:center; font-size:130%; font-weight:bold; color:#000; padding:0.3px 0; line-height:1; word-wrap:break-word; hyphens:auto; background-color:#f9f9f9;">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #eeeeee; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:2px 0 5px 0; color:#000;">Cinàa</div>}}
{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
m1egg6slcjttgba21om1ybmsr6pxoqi
12061
12060
2026-04-23T07:06:02Z
De-Invincible
36
12061
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="text-align:center; font-size:130%; font-weight:bold; color:#000; padding:0.3px 0; line-height:1; word-wrap:break-word; hyphens:auto; background-color:#f9f9f9;">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #eeeeee; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:2px 0 5px 0; color:#000;">Cinàa</div>}}
{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
qfw9xtt4ykrm343jd2er9x7n746ufsb
12062
12061
2026-04-23T07:07:03Z
De-Invincible
36
12062
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="text-align:center; font-size:130%; font-weight:bold; color:#000; padding:0.3px 0; line-height:1; word-wrap:break-word; hyphens:auto; background-color:#f9f9f9;">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #eeeeee; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:2px 0 5px 0; color:#000;">Cinàa</div>}}
{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
9ew1ndh8cb1cyjekcitb6st8ykhs938
12069
12062
2026-04-23T07:34:13Z
De-Invincible
36
12069
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="text-align:center; font-size:130%; font-weight:bold; color:#000; padding:8px 0; line-height:1.2; word-wrap:break-word; hyphens:auto; background-color:#f9f9f9; display: flex; align-items: center; justify-content: center;">
<div>
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
<div style="opacity: 0.5; margin-left: 15px; flex-shrink: 0;">
[[Payìil:{{{icon|Profile icon.svg}}}|35px|link=]]
</div>
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #aaa; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:2px 0 5px 0; color:#000;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
0kc634rvtqqn998py5b10c6ygf6sb02
12072
12069
2026-04-23T07:37:03Z
De-Invincible
36
12072
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="text-align:center; font-size:130%; font-weight:bold; color:#000; padding:8px 0; line-height:1.2; word-wrap:break-word; hyphens:auto; background-color:#f9f9f9; display: flex; align-items: center; justify-content: center;">
<div>
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
<div style="opacity: 0.5; margin-left: 55px; flex-shrink: 0;">
[[Payìil:{{{icon|Profile icon.svg}}}|35px|link=]]
</div>
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #aaa; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:2px 0 5px 0; color:#000;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
fg235kwelfpbbp5t0nqv9fhdwzlbdmr
12077
12072
2026-04-23T07:44:18Z
De-Invincible
36
12077
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:12px 5px;
line-height:1.2;
background-color:#f9f9f9;
position: relative; /* This allows the icon to be pinned inside */
overflow: hidden; /* Ensures icon doesn't leak outside the borders */
">
<div style="
position: absolute;
right: 5px; /* Distance from the right border */
top: 50%; /* Center vertically */
transform: translateY(-50%);
opacity: 0.15; /* Lower opacity works better for background layers */
z-index: 1; /* Puts it on the bottom layer */
">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]
</div>
<div style="position: relative; z-index: 2;">{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #aaa; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:2px 0 5px 0; color:#000;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Family</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #ccc; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
3vmha49zgtsn7xmh518ohz02317f13q
12078
12077
2026-04-23T07:50:40Z
De-Invincible
36
12078
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:12px 5px;
line-height:1.2;
background-color:#f9f9f9;
position: relative; /* This allows the icon to be pinned inside */
overflow: hidden; /* Ensures icon doesn't leak outside the borders */
">
<div style="
position: absolute;
right: 5px; /* Distance from the right border */
top: 50%; /* Center vertically */
transform: translateY(-50%);
opacity: 0.15; /* Lower opacity works better for background layers */
z-index: 1; /* Puts it on the bottom layer */
">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]
</div>
<div style="position: relative; z-index: 2;">{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #aaa; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:2px 0 5px 0; color:#000;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Anka</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
7hv8u07xt6nd811x0v0r9byo3e6qudp
12079
12078
2026-04-23T07:51:42Z
De-Invincible
36
12079
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:12px 5px;
line-height:1.2;
background-color:#f9f9f9;
position: relative; /* This allows the icon to be pinned inside */
overflow: hidden; /* Ensures icon doesn't leak outside the borders */
">
<div style="
position: absolute;
right: 5px; /* Distance from the right border */
top: 50%; /* Center vertically */
transform: translateY(-50%);
opacity: 0.15; /* Lower opacity works better for background layers */
z-index: 1; /* Puts it on the bottom layer */
">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]
</div>
<div style="position: relative; z-index: 2;">{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #aaa; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:2px 0 5px 0; color:#000;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Anka</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
3dlpwzp6g2bnecuoq5h5uyv6hs57njm
12080
12079
2026-04-23T07:52:43Z
De-Invincible
36
12080
wikitext
text/x-wiki
<div style="border:1px solid #aaa; background-color:#f9f9f9; width:315px; float:right; margin:0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size:90%;">
<div style="
text-align:center;
font-size:130%;
font-weight:bold;
color:#000;
padding:12px 5px;
line-height:1.2;
background-color:#f9f9f9;
position: relative; /* This allows the icon to be pinned inside */
overflow: hidden; /* Ensures icon doesn't leak outside the borders */
">
<div style="
position: absolute;
right: 5px; /* Distance from the right border */
top: 50%; /* Center vertically */
transform: translateY(-50%);
opacity: 0.15; /* Lower opacity works better for background layers */
z-index: 1; /* Puts it on the bottom layer */
">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]
</div>
<div style="position: relative; z-index: 2;">{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
</div>
{{#if: {{{occupation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border-top:1px solid #aaa; padding:3px; margin-top:5px; color:#000;">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:2px 0 5px 0; color:#000;">Personal details</div>}}{{#if: {{{native_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Native name:</div><div style="flex: 1;"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Birth name:</div><div style="flex: 1;">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Pronunciation:</div><div style="flex: 1;">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Born:</div><div style="flex: 1;">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Baptised:</div><div style="flex: 1;">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other names:</div><div style="flex: 1;">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Siglum:</div><div style="flex: 1;">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Status</div>}}{{#if: {{{disappeared_date|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Disappeared:</div><div style="flex: 1;">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Died:</div><div style="flex: 1;">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Body found:</div><div style="flex: 1;">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Resting place:</div><div style="flex: 1;">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Burial place:</div><div style="flex: 1;">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Monuments:</div><div style="flex: 1;">{{{monuments}}}</div></div> }}
{{#if: {{{occupation|}}}{{{years_active|}}}{{{education|}}}{{{alma_mater|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{works|}}}{{{credits|}}}{{{style|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Professional life</div>}}{{#if: {{{citizenship|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Citizenship:</div><div style="flex: 1;">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Education:</div><div style="flex: 1;">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Alma mater:</div><div style="flex: 1;">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Years active:</div><div style="flex: 1;">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Era:</div><div style="flex: 1;">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Employer:</div><div style="flex: 1;">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Organization:</div><div style="flex: 1;">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Agent:</div><div style="flex: 1;">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Known for:</div><div style="flex: 1;">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}}{{{works|}}}{{{credits|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{credits|}}}|Notable credits|{{#if:{{{works|}}}|Works|Notable works}}}}:</div><div style="flex: 1;">{{{notable_works|}}}{{{works|}}}{{{credits|}}}</div></div> }}{{#if: {{{style|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Style:</div><div style="flex: 1;">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Television:</div><div style="flex: 1;">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">{{#if:{{{office|}}}|Office|Title}}:</div><div style="flex: 1;">{{{title|}}}{{{office|}}}{{#if: {{{term|}}} | <br>{{{term}}} }}</div></div> }}{{#if: {{{predecessor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Predecessor:</div><div style="flex: 1;">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Successor:</div><div style="flex: 1;">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Politics & Legal</div>}}{{#if: {{{party|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Party:</div><div style="flex: 1;">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Other party:</div><div style="flex: 1;">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Movement:</div><div style="flex: 1;">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Opponents:</div><div style="flex: 1;">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Criminal charges:</div><div style="flex: 1;">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Anka</div>}}{{#if: {{{spouse|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Spouse:</div><div style="flex: 1;">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Partner:</div><div style="flex: 1;">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Children:</div><div style="flex: 1;">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Parent(s):</div><div style="flex: 1;">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Relatives:</div><div style="flex: 1;">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Family:</div><div style="flex: 1;">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div style="text-align:center; font-weight:bold; background-color:#eeeeee; border:1px solid #eeeeee; padding:3px; margin:8px 0 5px 0; color:#000;">Other information</div>}}{{#if: {{{awards|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Awards:</div><div style="flex: 1;">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Height:</div><div style="flex: 1;">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div style="display: flex; margin-bottom: 4px;"><div style="flex: 0 0 90px; font-weight: bold;">Callsign:</div><div style="flex: 1;">{{{callsign}}}</div></div> }}{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
2fuoechjfok20cxzotn4j2cmqm3irp3
12085
12080
2026-04-23T08:03:28Z
De-Invincible
36
12085
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox person/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }} </div></div>
{{#if: {{{occupation|}}} |<div class="custom-infobox-subheader">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{native_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Native name:</div><div class="custom-infobox-data"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Pronunciation:</div><div class="custom-infobox-data">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Baptised:</div><div class="custom-infobox-data">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other names:</div><div class="custom-infobox-data">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Siglum:</div><div class="custom-infobox-data">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div class="custom-infobox-section-header">Status</div>}}{{#if: {{{disappeared_date|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Disappeared:</div><div class="custom-infobox-data">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Body found:</div><div class="custom-infobox-data">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Burial place:</div><div class="custom-infobox-data">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Monuments:</div><div class="custom-infobox-data">{{{monuments}}}</div></div> }}
{{#if: {{{citizenship|}}}{{{education|}}}{{{alma_mater|}}}{{{years_active|}}}{{{era|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{style|}}}{{{television|}}}{{{title|}}}{{{office|}}} |<div class="custom-infobox-section-header">Professional life</div>}}{{#if: {{{citizenship|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Citizenship:</div><div class="custom-infobox-data">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Education:</div><div class="custom-infobox-data">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Alma mater:</div><div class="custom-infobox-data">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Years active:</div><div class="custom-infobox-data">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Era:</div><div class="custom-infobox-data">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Employer:</div><div class="custom-infobox-data">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Organization:</div><div class="custom-infobox-data">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Agent:</div><div class="custom-infobox-data">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Notable works:</div><div class="custom-infobox-data">{{{notable_works}}}</div></div> }}{{#if: {{{style|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Style:</div><div class="custom-infobox-data">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Television:</div><div class="custom-infobox-data">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{title|{{{office|Title}}}}}}:</div><div class="custom-infobox-data">{{{term|}}}</div></div> }}{{#if: {{{predecessor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Predecessor:</div><div class="custom-infobox-data">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Successor:</div><div class="custom-infobox-data">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div class="custom-infobox-section-header">Politics & Legal</div>}}{{#if: {{{party|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Party:</div><div class="custom-infobox-data">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other party:</div><div class="custom-infobox-data">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Movement:</div><div class="custom-infobox-data">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Opponents:</div><div class="custom-infobox-data">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Criminal charges:</div><div class="custom-infobox-data">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div class="custom-infobox-section-header">Anka</div>}}{{#if: {{{spouse|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Spouse:</div><div class="custom-infobox-data">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Partner:</div><div class="custom-infobox-data">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parent(s):</div><div class="custom-infobox-data">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Relatives:</div><div class="custom-infobox-data">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Family:</div><div class="custom-infobox-data">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div class="custom-infobox-section-header">Other information</div>}}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Callsign:</div><div class="custom-infobox-data">{{{callsign}}}</div></div> }}
{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}
{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}
</div></div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| icon =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| office =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
rrn9gyumgrgxfc9kkh3hbeuusw1p4dg
12086
12085
2026-04-23T08:07:54Z
De-Invincible
36
12086
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox person/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }} </div></div>
{{#if: {{{occupation|}}} |<div class="custom-infobox-subheader">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{native_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Native name:</div><div class="custom-infobox-data"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Pronunciation:</div><div class="custom-infobox-data">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Baptised:</div><div class="custom-infobox-data">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other names:</div><div class="custom-infobox-data">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Siglum:</div><div class="custom-infobox-data">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div class="custom-infobox-section-header">Status</div>}}{{#if: {{{disappeared_date|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Disappeared:</div><div class="custom-infobox-data">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Body found:</div><div class="custom-infobox-data">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Burial place:</div><div class="custom-infobox-data">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Monuments:</div><div class="custom-infobox-data">{{{monuments}}}</div></div> }}
{{#if: {{{citizenship|}}}{{{education|}}}{{{alma_mater|}}}{{{years_active|}}}{{{era|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{style|}}}{{{television|}}}{{{title|}}}{{{office|}}} |<div class="custom-infobox-section-header">Professional life</div>}}{{#if: {{{citizenship|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Citizenship:</div><div class="custom-infobox-data">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Education:</div><div class="custom-infobox-data">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Alma mater:</div><div class="custom-infobox-data">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Years active:</div><div class="custom-infobox-data">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Era:</div><div class="custom-infobox-data">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Employer:</div><div class="custom-infobox-data">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Organization:</div><div class="custom-infobox-data">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Agent:</div><div class="custom-infobox-data">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Notable works:</div><div class="custom-infobox-data">{{{notable_works}}}</div></div> }}{{#if: {{{style|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Style:</div><div class="custom-infobox-data">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Television:</div><div class="custom-infobox-data">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{title|{{{office|Title}}}}}}:</div><div class="custom-infobox-data">{{{term|}}}</div></div> }}{{#if: {{{predecessor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Predecessor:</div><div class="custom-infobox-data">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Successor:</div><div class="custom-infobox-data">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div class="custom-infobox-section-header">Politics & Legal</div>}}{{#if: {{{party|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Party:</div><div class="custom-infobox-data">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other party:</div><div class="custom-infobox-data">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Movement:</div><div class="custom-infobox-data">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Opponents:</div><div class="custom-infobox-data">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Criminal charges:</div><div class="custom-infobox-data">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div class="custom-infobox-section-header">Anka</div>}}{{#if: {{{spouse|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Spouse:</div><div class="custom-infobox-data">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Partner:</div><div class="custom-infobox-data">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parent(s):</div><div class="custom-infobox-data">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Relatives:</div><div class="custom-infobox-data">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Family:</div><div class="custom-infobox-data">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div class="custom-infobox-section-header">Other information</div>}}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Callsign:</div><div class="custom-infobox-data">{{{callsign}}}</div></div> }}
{{{module|}}}{{{module2|}}}{{{module3|}}}{{{module4|}}}{{{module5|}}}{{{module6|}}}
{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| icon =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| office =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
p729dufjwpkwrjhws6my9aort11h7mq
12092
12086
2026-04-23T08:14:08Z
De-Invincible
36
12092
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox person/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }} </div></div>
{{#if: {{{occupation|}}} |<div class="custom-infobox-subheader">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 250 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{native_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Native name:</div><div class="custom-infobox-data"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Pronunciation:</div><div class="custom-infobox-data">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Baptised:</div><div class="custom-infobox-data">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other names:</div><div class="custom-infobox-data">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Siglum:</div><div class="custom-infobox-data">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div class="custom-infobox-section-header">Status</div>}}{{#if: {{{disappeared_date|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Disappeared:</div><div class="custom-infobox-data">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Body found:</div><div class="custom-infobox-data">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Burial place:</div><div class="custom-infobox-data">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Monuments:</div><div class="custom-infobox-data">{{{monuments}}}</div></div> }}
{{#if: {{{citizenship|}}}{{{education|}}}{{{alma_mater|}}}{{{years_active|}}}{{{era|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{style|}}}{{{television|}}}{{{title|}}}{{{office|}}} |<div class="custom-infobox-section-header">Professional life</div>}}{{#if: {{{citizenship|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Citizenship:</div><div class="custom-infobox-data">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Education:</div><div class="custom-infobox-data">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Alma mater:</div><div class="custom-infobox-data">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Years active:</div><div class="custom-infobox-data">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Era:</div><div class="custom-infobox-data">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Employer:</div><div class="custom-infobox-data">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Organization:</div><div class="custom-infobox-data">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Agent:</div><div class="custom-infobox-data">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Notable works:</div><div class="custom-infobox-data">{{{notable_works}}}</div></div> }}{{#if: {{{style|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Style:</div><div class="custom-infobox-data">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Television:</div><div class="custom-infobox-data">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{title|{{{office|Title}}}}}}:</div><div class="custom-infobox-data">{{{term|}}}</div></div> }}{{#if: {{{predecessor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Predecessor:</div><div class="custom-infobox-data">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Successor:</div><div class="custom-infobox-data">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div class="custom-infobox-section-header">Politics & Legal</div>}}{{#if: {{{party|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Party:</div><div class="custom-infobox-data">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other party:</div><div class="custom-infobox-data">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Movement:</div><div class="custom-infobox-data">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Opponents:</div><div class="custom-infobox-data">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Criminal charges:</div><div class="custom-infobox-data">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div class="custom-infobox-section-header">Anka</div>}}{{#if: {{{spouse|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Spouse:</div><div class="custom-infobox-data">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Partner:</div><div class="custom-infobox-data">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parent(s):</div><div class="custom-infobox-data">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Relatives:</div><div class="custom-infobox-data">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Family:</div><div class="custom-infobox-data">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div class="custom-infobox-section-header">Other information</div>}}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Callsign:</div><div class="custom-infobox-data">{{{callsign}}}</div></div> }}
{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| icon =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| office =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
fwe57jry691288aytaymciasxhrshyl
12095
12092
2026-04-23T08:17:50Z
De-Invincible
36
12095
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox person/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Profile icon.svg}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }} </div></div>
{{#if: {{{occupation|}}} |<div class="custom-infobox-subheader">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}}{{{other_names|}}}{{{siglum|}}}{{{pronunciation|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{native_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Native name:</div><div class="custom-infobox-data"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name}}}</div></div> }}{{#if: {{{pronunciation|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Pronunciation:</div><div class="custom-infobox-data">{{{pronunciation}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Baptised:</div><div class="custom-infobox-data">{{{baptised}}}</div></div> }} }}{{#if: {{{other_names|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other names:</div><div class="custom-infobox-data">{{{other_names}}}</div></div> }}{{#if: {{{siglum|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Siglum:</div><div class="custom-infobox-data">{{{siglum}}}</div></div> }}
{{#if: {{{disappeared_date|}}}{{{death_date|}}}{{{resting_place|}}}{{{burial_place|}}} |<div class="custom-infobox-section-header">Status</div>}}{{#if: {{{disappeared_date|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Disappeared:</div><div class="custom-infobox-data">{{{disappeared_date}}}{{#if: {{{disappeared_place|}}} | <br>{{{disappeared_place}}} }}{{#if: {{{disappeared_status|}}} | <br>({{{disappeared_status}}}) }}</div></div> }}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}{{#if: {{{death_cause|}}} | <br>({{{death_cause}}}) }}</div></div> }}{{#if: {{{body_discovered|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Body found:</div><div class="custom-infobox-data">{{{body_discovered}}}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}{{#if: {{{burial_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Burial place:</div><div class="custom-infobox-data">{{{burial_place}}}{{#if: {{{burial_coordinates|}}} | <br>{{{burial_coordinates}}} }}</div></div> }}{{#if: {{{monuments|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Monuments:</div><div class="custom-infobox-data">{{{monuments}}}</div></div> }}
{{#if: {{{citizenship|}}}{{{education|}}}{{{alma_mater|}}}{{{years_active|}}}{{{era|}}}{{{employer|}}}{{{organization|}}}{{{known_for|}}}{{{notable_works|}}}{{{style|}}}{{{television|}}}{{{title|}}}{{{office|}}} |<div class="custom-infobox-section-header">Professional life</div>}}{{#if: {{{citizenship|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Citizenship:</div><div class="custom-infobox-data">{{{citizenship}}}</div></div> }}{{#if: {{{education|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Education:</div><div class="custom-infobox-data">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Alma mater:</div><div class="custom-infobox-data">{{{alma_mater}}}</div></div> }}{{#if: {{{years_active|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Years active:</div><div class="custom-infobox-data">{{{years_active}}}</div></div> }}{{#if: {{{era|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Era:</div><div class="custom-infobox-data">{{{era}}}</div></div> }}{{#if: {{{employer|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Employer:</div><div class="custom-infobox-data">{{{employer}}}</div></div> }}{{#if: {{{organization|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Organization:</div><div class="custom-infobox-data">{{{organization}}}</div></div> }}{{#if: {{{agent|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Agent:</div><div class="custom-infobox-data">{{{agent}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Notable works:</div><div class="custom-infobox-data">{{{notable_works}}}</div></div> }}{{#if: {{{style|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Style:</div><div class="custom-infobox-data">{{{style}}}</div></div> }}{{#if: {{{television|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Television:</div><div class="custom-infobox-data">{{{television}}}</div></div> }}{{#if: {{{title|}}}{{{office|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">{{{title|{{{office|Title}}}}}}:</div><div class="custom-infobox-data">{{{term|}}}</div></div> }}{{#if: {{{predecessor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Predecessor:</div><div class="custom-infobox-data">{{{predecessor}}}</div></div> }}{{#if: {{{successor|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Successor:</div><div class="custom-infobox-data">{{{successor}}}</div></div> }}
{{#if: {{{party|}}}{{{otherparty|}}}{{{movement|}}}{{{opponents|}}}{{{criminal_charges|}}} |<div class="custom-infobox-section-header">Politics & Legal</div>}}{{#if: {{{party|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Party:</div><div class="custom-infobox-data">{{{party}}}</div></div> }}{{#if: {{{otherparty|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Other party:</div><div class="custom-infobox-data">{{{otherparty}}}</div></div> }}{{#if: {{{movement|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Movement:</div><div class="custom-infobox-data">{{{movement}}}</div></div> }}{{#if: {{{opponents|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Opponents:</div><div class="custom-infobox-data">{{{opponents}}}</div></div> }}{{#if: {{{criminal_charges|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Criminal charges:</div><div class="custom-infobox-data">{{{criminal_charges}}}{{#if: {{{criminal_penalty|}}} | <br>Penalty: {{{criminal_penalty}}} }}{{#if: {{{criminal_status|}}} | <br>Status: {{{criminal_status}}} }}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div class="custom-infobox-section-header">Anka</div>}}{{#if: {{{spouse|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Spouse:</div><div class="custom-infobox-data">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Partner:</div><div class="custom-infobox-data">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parent(s):</div><div class="custom-infobox-data">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Relatives:</div><div class="custom-infobox-data">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Family:</div><div class="custom-infobox-data">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{height|}}}{{{callsign|}}}{{{signature|}}}{{{website|}}} |<div class="custom-infobox-section-header">Other information</div>}}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}{{#if: {{{height|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Height:</div><div class="custom-infobox-data">{{{height}}}</div></div> }}{{#if: {{{callsign|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Callsign:</div><div class="custom-infobox-data">{{{callsign}}}</div></div> }}
{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
{{#if: {{{footnotes|}}} |<div style="border-top: 1px solid #ddd; margin-top: 8px; padding-top: 4px; font-size: 85%; color: #555;">{{{footnotes}}}</div>}}</div></div>
<noinclude>
<pre>
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| native_name =
| native_name_lang =
| icon =
| image =
| image_upright =
| image_size =
| landscape =
| alt =
| caption =
| pronunciation =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| disappeared_date =
| disappeared_place =
| disappeared_status =
| death_date =
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates =
| burial_place =
| burial_coordinates =
| monuments =
| other_names =
| siglum =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| era =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| television =
| height =
| title =
| office =
| term =
| predecessor =
| successor =
| party =
| otherparty =
| movement =
| opponents =
| boards =
| criminal_charges =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| callsign =
| awards =
| website =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| footnotes =
}}
</pre>
{{Documentation}}
</noinclude>
tjsaooer2c2oalwa2jliockw7hurp4u
Ado Gwanja
0
602
12042
10949
2026-04-23T06:39:01Z
De-Invincible
36
12042
wikitext
text/x-wiki
{{Infobox musical artist
| honorific_prefix =
| subheader = Bàawàaɗò
| name = Ado Gwanja
| type = artist
| honorific_suffix =
| image = Ado Gwanja.jpg
| caption =
| native_name =
| alias = Gwanja
| birth_name = Ado Isah Gwanja
| birth_date = 22/01/1990
| birth_place = [[Kano]], [[Lanjèeriya]]
| nationality = {{Flag|Nigeria}}
| citizenship = [[Lanjèeriya]]
| education = Federal College of Education Kano
| yearsactive = 2017-Present
| genre = RnB, Nanaye
| awards = Get Kano award Best Actor, Sani Abacha Youth Center Award Best Hausa artists Rhymes Pillars Crew
| occupation = Bàa wàaɗò, Bàa kàawàa ma fìm
| spouse = Maimuna (àsau mendài)
| children = 1 bàa<ref>{{Cite web | url=https://aminiya.dailytrust.com/ado-gwanja-na-cikin-wasa-a-legas-aka-shaida-masa-matarsa-ta-haihu | title=Ado Gwanja na cikin wasa a Legas aka shaida masa matarsa ta haihu | date=22 August 2019 }}</ref>
}}
'''Ado Gwanja''' laawaansakò a fat ta àuyaa ka bèelu ka tarai ma wàaɗi a àminto ka dùubù wàɗi ka zìila ɓànnù ka àuyaa fèeɗu ka mbad (22 Januwari, 1990) kasantaka bàa wàɗo ma [[Lanjèeriya]] kà apto mà fìm a kwar ta silima ma gàazàa ma [[Lanjèeriya]] (''Kannywood'').
== Laawunsakò ==
Baba hnni na [[Màlmò]] ma [[Kanàu]] ka nani Shua-Arab ma jahaa ma [[Barno|Barnàu]]. Ado Gwanja ɗāfà-tà-Ndagèe hnni Musulinci, ɗàkwàruntakò ka lèewi.<ref>{{Cite web|author=Arewablogg|date=31 October 2018|title=Auren Ado Gwanja Ya Shiga Tarihi|url=https://www.arewablogng.com/auren-ado-gwanja-ya-shiga-tarihi/|accessdate=24 April 2022|website=ArewaBlog NG|language=en-US}}</ref><ref>{{Cite web|date=14 October 2018|title=Kannywood's Gwanja weds heartthrob Maimuna {{!}} Premium Times Nigeria|url=https://www.premiumtimesng.com/entertainment/kannywood/290345-kannywoods-gwanja-weds-heartthrob-maimuna.html|accessdate=28 April 2022|language=en-GB}}</ref>
== Albam ==
Albam ma Ado Gwanja amaa;
{| class="wikitable"
!Fim
!Amun
|-
|Kujerar Tsakar Gida
|2014
|-
|Indosa
|2017
|-
|Matan Arewa
|2016
|-
|Juya
|2018
|-
|Ga Gwanja
|2017
|-
|Tangaran
|2021
|-
|Adama
|2021
|}
== References ==
{{Reflist}}
[[Sashì:Ndala wàaɗò mà Lanjèeriya]]
4zhrjob74edyehm1rq3saq2z9nnyojs
Aisha Tsamiya
0
622
12129
11809
2026-04-23T10:39:26Z
De-Invincible
36
12129
wikitext
text/x-wiki
{{Infobox actress
| name = Aisha Aliyu Tsamiya
| subheader = Bàa kàawàa mà fim
| image = Aisha Aliyu Tsamiya (3).jpg
| birth_date = 1992
| birth_name = Aisha Aliyu
| birth_place = [[Kanàu]], Lanjèeriya
| alma_mater = North-West University
| nationality = {{Flag|Nigeria|Lanjèeriya}}
| occupation = Bàa tà kàawàa mà fim
| years_active = 2011 till date
| spouse = Alhaji Buba Abakar
| known_for =
| nickname =
| children = 3<ref>{{Cite web | url=https://www.legit.ng/1190984-aisha-aliyu-tsamiya-biography-career.html | title=Aisha Aliyu Tsamiya's biography: Age, career, net worth, family | date=20 September 2022 }}</ref>
}}
'''Aisha Aliyu''' '''Tsamiya''' laawaantakò a àminto ka dùubù wàɗi ka zìila ɓànnù ka àuyaa fèeɗu ka mbad ka bèelu (1992) kasantakàu bàa kàawàa ma fìm ma [[Màlmò]] ka purodusa a kwar ta silima ma gàazàa ma [[Lanjèeriya]] (''Kannywood''), [[Kanàu]], [[Lanjèeriya]]. Dìgo fim ta ne ''"Salma"''.<ref>{{Cite web |last=Lere |first=Mohammed |date=2016-12-09 |title=Top 10 Kannywood actresses in 2016 |url=https://www.premiumtimesng.com/entertainment/217445-top-10-kannywood-actresses-2016.html |access-date=2022-08-06 |website=Premium Times Nigeria |language=en-GB}}</ref>
== Fìm ==
{| class="wikitable"
|-
! Film
! Year
|-
| So
|
|-
| Tsamiya
|
|-
| Dakin Amarya
|
|-
| Hanyar [[Kano (city)|Kano]]<ref>{{Cite web|last=Lere|first=Mohammed|date=2014-09-24|title=Kannywood Movie Review: Hanyar Kano|url=https://www.premiumtimesng.com/entertainment/168590-kannywood-movie-review-hanyar-kano.html|access-date=2022-08-06|website=Premium Times Nigeria|language=en-GB}}</ref>
|
|-
| Ranar Baiko
|
|-
| Salma
|
|-
| Zeenat
|
|-
| Uzuri
|
|-
| Husna
|
|-
| Wakili
| 2019
|-
| Basaja Takun Karshe Asma'u
| 2015
|-
| Farin Dare
| 2013
|-
| Carbon Kwai
| 2011
|-
| Mijin Biza
| 2017
|-
| Matar Mijina
| 2018
|-
| Rudani
| 2018
|-
| Laila Adam
| 2018
|-
| Kanwar Dubarudu
| 2017
|-
| Kalan Dangi
| 2017
|-
| Akwai Dalili
| 2016
|-
| Ana Dara Ga Dare
| 2019
|-
| Wuff
| 2021
|-
| Ina Kika je<ref>{{Cite web|last=Lere|first=Mohammed|date=2014-10-17|title=Kannywood movie Review: Ina kika je|url=https://www.premiumtimesng.com/entertainment/169698-kannywood-movie-review-ina-kika-je.html|access-date=2022-08-06|website=Premium Times Nigeria|language=en-GB}}</ref><ref>{{Cite web|title=Aisha Aliyu Tsamiya {{!}} Actress, Producer|url=https://m.imdb.com/name/nm13850134/?ref_=nv_sr_srsg_0_tt_0_nm_8_in_0_q_Aisha%2520Aliyu|access-date=2025-05-04|website=IMDb|language=en-US}}</ref>
|
|}
== Càlàa ==
{{Reflist|2}}
[[Sashì:Ndala Lanjèeriya]]
[[Sashì:Ndala kàawàa fìm mà Lanjèeriya]]
[[Sashì:Mendài]]
[[Sashì:Mendài mà Lanjèeriya]]
5gmahqbf5ndv9uxbb6drcmncnfk0upt
Maryam Yahaya
0
1633
12123
11349
2026-04-23T10:32:59Z
De-Invincible
36
12123
wikitext
text/x-wiki
{{Infobox person
| name = Maryam Yahaya
| subheader = Bàa kàawàa mà fim
| birth_name = Maryam Yahya
| image = Maryam Yahya.jpg
| birth_date = {{Birth date and age|mf=yes|1997|7|17|df=y}}
| birth_place = [[Kanàu|Kanò]], Lanjèeriya
| nationality = Lanjèeriya
| citizenship =
| occupation = Bâ tà kàawàa ma fìm
| years_active = 2016–present
| known_for = ''Mansoor''
| notable_works = Actress
}}
'''Maryam Yahaya''' laawaantakò a fat ta mbad kà bacìibèelu ka tarai ma bacìibèelu a àminto ka dùubù wàɗi ka zìila ɓànnù ka àuyaa fèeɗu ka mbad ka bacìibèelu (17 Julai, 1997) kasantakàu bâ kàawàa ma fìm ma Màlmò a kwar ta silima ma gàazàa ma [[Lanjèeriya]] (Kannywood), Kanàu, Lanjèeriya. Dìgo fim ta ne ''"Taraddadi"''.<ref name="Ngbokai">{{Cite web |last1=Ngbokai |first1=Richard P. |title=Young artistes making waves in Kannywood |url=https://www.dailytrust.com.ng/young-artistes-making-waves-in-kannywood-261912.html |website=Daily Trust |accessdate=2 August 2019 |date=20 July 2018}}</ref><ref>{{Cite web |last1=Lere |first1=Muhammad |title=Ali Nuhu, son win at City People Awards 2017 - Premium Times Nigeria |url=https://www.premiumtimesng.com/entertainment/kannywood/245555-ali-nuhu-son-win-city-people-awards-2017.html |website=Premium Times |accessdate=2 August 2019 |date=9 October 2017}}</ref>
== Fim ==
{| class="wikitable sortable"
|+
! scope="col" |Sim
! scope="col" |Amun
!Role
|-
|''Gidan Abinci''
|2016
|
|-
|''Barauniya''
|2016
|
|-
|''Tabo''
|2017
|
|-
|''Mijin Yarinya''
|2017
|
|-
|''Mansoor''
|2017
|Maryam
|-
|''Mariya''
|2018
|Mariya
|-
|''Jummai Ko Larai''
|2018
|
|-
|''Matan Zamani''
|2018
|
|-
|''Hafiz''
|2018
|
|-
|''Gidan Kashe Awo''
|2018
|
|-
|''Gurguwa''
|2018
|
|-
|''Mujadala''
|2018
|
|-
|''Wutar Kara''
|2019
|
|-
|''Sareenah''
|2019
|
|-
|''Jaruma''
|2020
|
|-
|''Gidan Kashe Ahu''
|2020
|
|-
|''Tsakaninmu''
|2021
|Nafisa
|-
|''Alaqa''
|2021
|Ummi
|-
|''Hikima''
|2021
|
|-
|''Lamba''
|2022
|
|-
|''Sarki Goma Zamani Goma''
|2021
|
|-
|''sakaninmu''
|2021
|Nafisa
|-
|''Zan Rayu Dake''
|2019
|
|-
|}
== Càlàa ==
{{Reflist}}
[[Sashì:Ndala Lanjèeriya]]
[[Sashì:Ndala kàawàa fìm mà Lanjèeriya]]
adoapb4knm20xiytqvm3hv2er7s6ut0
National Museum of Qatar
0
1686
11992
7302
2026-04-23T03:32:47Z
Pppery
272
On Wikidata
11992
wikitext
text/x-wiki
'''National Museum of Qatar''' kwàr ta tàrihi ne mà ƴali a jàga tà [[Doha]], ƴaltà [[Qatar]]. Ɗàwu ta a fat tà 28 tarai ma kunnu amin ma 1975
==Fòoto==
<gallery mode="packed" heights="140">
File:National Museum of Qatar shop.jpg
File:National Museum of Qatar Animals.jpg
File:National Museum of Qatar - Visuals.jpg
File:National Museum of Qatar 09.jpg
National Museum of Qatar under construction.jpg
</gallery>
[[Sashì:Kwàr ta tàrihi ma Qatar]]
[[Sashì:Kwàr ta tàrihi]]
hbfz7izp56r61lnbcwtey7xs70mquko
Rahama Sadau
0
1765
12057
11454
2026-04-23T06:56:49Z
De-Invincible
36
12057
wikitext
text/x-wiki
{{Infobox person
| name = Rahama Sadau
| subheader = Bâ kàawàa ma fìm
| birth_name = Rahama Ibrahim Sadau
| image = Rahama_Sadau_in_MTV_Shuga_Naija_(cropped).png
| birth_date = {{Birth date and age|1993|12|07|df=y}}
| birth_place = [[Kaduna]], [[Lanjèeriya]]
| alma mater = [[Eastern Mediterranean University]]
| nationality = [[Lanjèeriya]]
| occupation = Bâ kàawàa ma fìm
| credits = {{Unbulleted list
|''[[Sons of the Caliphate]]''
|''[[Up North (film)|Up North]]''
|''[[Shuga (TV series)|MTV Shuga]]''
|''[[If I Am President]]''
}}
| spouse = Ibrahim Garba
| relatives =
| partner =
| children =
| awards =
| website = http://www.rahamasadau.com
}}
'''Rahama Sadau''' laawaantakò a fat ta bacìibèelu ka tarai ma mbad ka bèelu a àminto ka dùubù wàɗi ka zìila ɓànnù ka àuyaa fèeɗu ka mbad ka kùunu (28, Oktoba 1993)<ref>{{Cite web |title=Rahama Sadau biography, net worth, age, family, contact & picture |url=https://www.manpower.com.ng/people/15996/rahama-sadau |access-date=2022-07-21 |website=www.manpower.com.ng}}</ref> kasantakàu bâ kàawàa ma fìm ma Màlmò ka Nàsàaràa ka bâ cìrìɓtà fim a kwar ta silima ma gàazàa ma Lanjèeriya (Kannywood), [[Kanàu]], [[Lanjèeriya]]. Dìgo fim ta ne ''"Gani ga Wane"''.<ref>{{Cite web |date=9 November 2013 |title=Kannywood: I won't return to dancing – Rahama Sadau | Premium Times Nigeria |url=https://www.premiumtimesng.com/entertainment/149318-kannywood-wont-return-dancing-rahama-sadau.html}}</ref><ref name="auditions.ng">{{Cite web |title=Rahama Sadau – Auditions.ng |url=http://auditions.ng/archives/actor/rahama-sadau }}{{Dead link|date=July 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref>
== Fim ==
{| class="wikitable"
!Amun
!Fim
!Role
|-
| rowspan="4" |2024
|''[[All of Us (2024 series)|All of Us]]''
|Ahmad's Mum
|-
|''The Waiter''
|Firida
|-
|''Conversations in Transit''
|Hajara
|-
|''Postcards''
|-
| rowspan="6" |2023
|''The Two Aishas''
|Aisha Jibril
|-
|''A Lot Like Love''
|Fanna
|-
|''[[:war:_Wrath_and_Revenge|War: Wrath and Revenge]]''
|Binta Kutigi Bula
|-
|''In Bed with the Pedros''
|Hauwa
|-
|''This Is Lagos''
|
|-
|''The Plan''
|-
| rowspan="6" |2022
|''Nadeeya''
|Nadeeya
|-
|[[Khuda Haafiz: Chapter 2 – Agni Pariksha|''Khuda Haafiz: Chapter 2 Agni - Pariksha'']]
|-
|''Almajiri''
|Mama Nafisat
|-
|''Seeking Refuge''
|
|-
|''The American King-As told by an African Priestess''
|Rahama
|-
|''Jabalata''
|Queen Kada
|-
|2021
|[[Chief Daddy 2: Going for Broke|''Chief Daddy 2: Going for Broke'']]
|Laila
|-
|2019
|''Zero Hour''
|
|-
| rowspan="2" |2018
|[[Up North (film)|''Up North'']]
|Mariam
|-
|''[[If I Am President]]''
|Michelle
|-
|N/A
|''Aljannar Duniya''
|
|-
| rowspan="8" |2017
|''Adam''
|
|-
|''Ba Tabbas''
|
|-
|[[Shuga (TV series)|''MTV Shuga Naija'']]
|
|-
|''Rariya''
|Zainab Abuja
|-
|[[Tatu (film)|''TATU'']]
|Tatuma
|-
|''Rumana''
|
|-
|''[[Ajuwaya]]''
|
|-
|''[[Hakkunde]]''
|Aisha
|-
| rowspan="2" |2016
|''[[Sons of the Caliphate]]''
|
|-
|''The Other Side''
|
|-
| rowspan="8" |2015
|''Kasa Ta''
|
|-
|''Wutar Gaba''
|
|-
|''Sallamar So''
|
|-
|''Wata Tafiya''
|
|-
|''Halacci''
|Hiday
|-
|''Gidan Farko''
|
|-
|''Ana Wata ga Wata''
|
|-
|''Alkalin Kauye''
|
|-
| rowspan="10" |2014
|''Jinin Jiki Na''
|
|-
|''Hujja''
|
|-
|''Garbati''
|
|-
|''Kaddara Ko Fansa''
|
|-
|''Kisan Gilla''
|
|-
|''Mati da Lado''
|Rama
|-
|''Sabuwar Sangaya''
|
|-
|''Sirrin Da Ke Raina''
|
|-
|''So Aljannar Duniya''
|
|-
|''Suma Mata Ne''
|Baby Nice
|-
| rowspan="4" |2013
|''Farin Dare''
|Bilikisu
|-
|''Gani Ga Wane''
|Binta
|-
|''Da Kai Zan Gana''
|
|-
|''Mai Farin Jini''
|
|-
|2020
|''Mati a Zazzau''
|-
|}
== Càlàa ==
{{Reflist|2}}
[[Sashì:Ndala Lanjèeriya]]
[[Sashì:Ndala kàawàa fìm mà Lanjèeriya]]
cuot0um3shnp0b9ydj2v10m3ckepfi8
Tampilet:Infobox actress
10
3084
12117
11830
2026-04-23T10:25:15Z
De-Invincible
36
12117
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox actress/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Movie stub film.svg}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
</div>
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{native_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Native name:</div><div class="custom-infobox-data"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Baptised:</div><div class="custom-infobox-data">{{{baptised}}}</div></div> }} }}
{{#if: {{{death_date|}}}{{{death_place|}}}{{{resting_place|}}} |<div class="custom-infobox-section-header">Status</div>}}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}
{{#if: {{{education|}}}{{{alma_mater|}}}{{{known_for|}}}{{{notable_works|}}}{{{style|}}}{{{movement|}}}{{{elected|}}}{{{patrons|}}}{{{memorials|}}} |<div class="custom-infobox-section-header">Professional life</div>}}{{#if: {{{education|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Education:</div><div class="custom-infobox-data">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Alma mater:</div><div class="custom-infobox-data">{{{alma_mater}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Notable works:</div><div class="custom-infobox-data">{{{notable_works}}}</div></div> }}{{#if: {{{style|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Style:</div><div class="custom-infobox-data">{{{style}}}</div></div> }}{{#if: {{{movement|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Movement:</div><div class="custom-infobox-data">{{{movement}}}</div></div> }}{{#if: {{{elected|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Elected:</div><div class="custom-infobox-data">{{{elected}}}</div></div> }}{{#if: {{{patrons|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Patrons:</div><div class="custom-infobox-data">{{{patrons}}}</div></div> }}{{#if: {{{memorials|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Memorials:</div><div class="custom-infobox-data">{{{memorials}}}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div class="custom-infobox-section-header">Anka</div>}}{{#if: {{{spouse|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Spouse:</div><div class="custom-infobox-data">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Partner:</div><div class="custom-infobox-data">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parent(s):</div><div class="custom-infobox-data">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Relatives:</div><div class="custom-infobox-data">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Family:</div><div class="custom-infobox-data">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |<div class="custom-infobox-section-header">Other information</div>}}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}
{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox artist
| honorific_prefix =
| name =
| honorific_suffix =
| icon =
| image =
| image_size =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| death_date =
| death_place =
| resting_place =
| resting_place_coordinates =
| education =
| alma_mater =
| known_for =
| notable_works =
| style =
| movement =
| elected =
| patrons =
| memorials =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| awards =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| website =
}}
</pre>
{{Documentation}}
</noinclude>
av39rkvqri6cygr42ilz4uviutkturu
12126
12117
2026-04-23T10:37:12Z
De-Invincible
36
12126
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox actress/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Movie stub film.svg}}}|45px|link=]]</div>
<div class="custom-infobox-name">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
</div>
{{#if: {{{occupation|}}} |<div class="custom-infobox-subheader">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{native_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Native name:</div><div class="custom-infobox-data"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Baptised:</div><div class="custom-infobox-data">{{{baptised}}}</div></div> }} }}
{{#if: {{{death_date|}}}{{{death_place|}}}{{{resting_place|}}} |<div class="custom-infobox-section-header">Status</div>}}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}
{{#if: {{{education|}}}{{{alma_mater|}}}{{{known_for|}}}{{{notable_works|}}}{{{style|}}}{{{movement|}}}{{{elected|}}}{{{patrons|}}}{{{memorials|}}} |<div class="custom-infobox-section-header">Professional life</div>}}{{#if: {{{education|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Education:</div><div class="custom-infobox-data">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Alma mater:</div><div class="custom-infobox-data">{{{alma_mater}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Notable works:</div><div class="custom-infobox-data">{{{notable_works}}}</div></div> }}{{#if: {{{style|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Style:</div><div class="custom-infobox-data">{{{style}}}</div></div> }}{{#if: {{{movement|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Movement:</div><div class="custom-infobox-data">{{{movement}}}</div></div> }}{{#if: {{{elected|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Elected:</div><div class="custom-infobox-data">{{{elected}}}</div></div> }}{{#if: {{{patrons|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Patrons:</div><div class="custom-infobox-data">{{{patrons}}}</div></div> }}{{#if: {{{memorials|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Memorials:</div><div class="custom-infobox-data">{{{memorials}}}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div class="custom-infobox-section-header">Anka</div>}}{{#if: {{{spouse|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Spouse:</div><div class="custom-infobox-data">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Partner:</div><div class="custom-infobox-data">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parent(s):</div><div class="custom-infobox-data">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Relatives:</div><div class="custom-infobox-data">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Family:</div><div class="custom-infobox-data">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |<div class="custom-infobox-section-header">Other information</div>}}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}
{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox artist
| honorific_prefix =
| name =
| honorific_suffix =
| icon =
| image =
| image_size =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| death_date =
| death_place =
| resting_place =
| resting_place_coordinates =
| education =
| alma_mater =
| known_for =
| notable_works =
| style =
| movement =
| elected =
| patrons =
| memorials =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| awards =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| website =
}}
</pre>
{{Documentation}}
</noinclude>
gs7o87xg5g4ssmcpl6qhg2spvcnpgjp
12128
12126
2026-04-23T10:39:04Z
De-Invincible
36
12128
wikitext
text/x-wiki
<templatestyles src="Tampilet:Infobox actress/styles.css" />
<div class="custom-infobox">
<div class="custom-infobox-header">
<div class="custom-infobox-icon">[[Payìil:{{{icon|Movie stub film.svg}}}|48px|link=]]</div>
<div class="custom-infobox-name">
{{#if: {{{honorific_prefix|}}} | <span style="font-size: 70%; font-weight: normal;">{{{honorific_prefix}}}</span><br> }}{{{name|{{PAGENAME}}}}}{{#if: {{{honorific_suffix|}}} | <br><span style="font-size: 70%; font-weight: normal;">{{{honorific_suffix}}}</span> }}
</div>
</div>
{{#if: {{{occupation|}}} |<div class="custom-infobox-subheader">{{{occupation}}}</div>}}
{{#if: {{{image|}}} |<div style="text-align: center; margin: 10px 0;">[[Payìil:{{{image}}}|{{#if: {{{image_size|}}} | {{{image_size}}} | {{#if: {{{image_upright|}}} | {{{image_upright}}} | 300 }} }}px|alt={{{alt|}}}]]
{{#if: {{{caption|}}} |<div style="font-size: 90%; font-style: italic; color: #555; margin-top: 4px;">{{{caption}}}</div>}}</div>}}
<div style="border-top: 1px solid #ddd; padding: 10px; font-size: 90%;">
{{#if: {{{native_name|}}}{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{baptised|}}} |<div class="custom-infobox-section-header">Personal details</div>}}{{#if: {{{native_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Native name:</div><div class="custom-infobox-data"><span {{#if: {{{native_name_lang|}}} | lang="{{{native_name_lang}}}" }}>{{{native_name}}}</span></div></div> }}{{#if: {{{birth_name|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Birth name:</div><div class="custom-infobox-data">{{{birth_name}}}</div></div> }}{{#if: {{{birth_date|}}}{{{birth_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Born:</div><div class="custom-infobox-data">{{{birth_date|}}}{{#if: {{{birth_date|}}} | {{#if: {{{birth_place|}}} | <br> }} }}{{{birth_place|}}}</div></div> }}{{#if: {{{birth_date|}}} | | {{#if: {{{baptised|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Baptised:</div><div class="custom-infobox-data">{{{baptised}}}</div></div> }} }}
{{#if: {{{death_date|}}}{{{death_place|}}}{{{resting_place|}}} |<div class="custom-infobox-section-header">Status</div>}}{{#if: {{{death_date|}}}{{{death_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Died:</div><div class="custom-infobox-data">{{{death_date|}}}{{#if: {{{death_date|}}} | {{#if: {{{death_place|}}} | <br> }} }}{{{death_place|}}}</div></div> }}{{#if: {{{resting_place|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Resting place:</div><div class="custom-infobox-data">{{{resting_place}}}{{#if: {{{resting_place_coordinates|}}} | <br>{{{resting_place_coordinates}}} }}</div></div> }}
{{#if: {{{education|}}}{{{alma_mater|}}}{{{known_for|}}}{{{notable_works|}}}{{{style|}}}{{{movement|}}}{{{elected|}}}{{{patrons|}}}{{{memorials|}}} |<div class="custom-infobox-section-header">Professional life</div>}}{{#if: {{{education|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Education:</div><div class="custom-infobox-data">{{{education}}}</div></div> }}{{#if: {{{alma_mater|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Alma mater:</div><div class="custom-infobox-data">{{{alma_mater}}}</div></div> }}{{#if: {{{known_for|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Known for:</div><div class="custom-infobox-data">{{{known_for}}}</div></div> }}{{#if: {{{notable_works|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Notable works:</div><div class="custom-infobox-data">{{{notable_works}}}</div></div> }}{{#if: {{{style|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Style:</div><div class="custom-infobox-data">{{{style}}}</div></div> }}{{#if: {{{movement|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Movement:</div><div class="custom-infobox-data">{{{movement}}}</div></div> }}{{#if: {{{elected|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Elected:</div><div class="custom-infobox-data">{{{elected}}}</div></div> }}{{#if: {{{patrons|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Patrons:</div><div class="custom-infobox-data">{{{patrons}}}</div></div> }}{{#if: {{{memorials|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Memorials:</div><div class="custom-infobox-data">{{{memorials}}}</div></div> }}
{{#if: {{{spouse|}}}{{{partner|}}}{{{children|}}}{{{parents|}}}{{{mother|}}}{{{father|}}}{{{relatives|}}}{{{family|}}} |<div class="custom-infobox-section-header">Anka</div>}}{{#if: {{{spouse|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Spouse:</div><div class="custom-infobox-data">{{{spouse}}}</div></div> }}{{#if: {{{partner|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Partner:</div><div class="custom-infobox-data">{{{partner}}}</div></div> }}{{#if: {{{children|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Children:</div><div class="custom-infobox-data">{{{children}}}</div></div> }}{{#if: {{{parents|}}}{{{mother|}}}{{{father|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Parent(s):</div><div class="custom-infobox-data">{{#if: {{{parents|}}} | {{{parents}}} | {{{father|}}} {{#if: {{{father|}}} | {{#if: {{{mother|}}} | <br> }} }}{{{mother|}}} }}</div></div> }}{{#if: {{{relatives|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Relatives:</div><div class="custom-infobox-data">{{{relatives}}}</div></div> }}{{#if: {{{family|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Family:</div><div class="custom-infobox-data">{{{family}}}</div></div> }}
{{#if: {{{awards|}}}{{{signature|}}}{{{website|}}} |<div class="custom-infobox-section-header">Other information</div>}}{{#if: {{{awards|}}} |<div class="custom-infobox-row"><div class="custom-infobox-label">Awards:</div><div class="custom-infobox-data">{{{awards}}}</div></div> }}
{{#if: {{{signature|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Signature:</strong><br>[[Payìil:{{{signature}}}|{{#if: {{{signature_size|}}} | {{{signature_size}}} | 150 }}px|alt={{{signature_alt|}}}]]
{{#if: {{{signature_type|}}} | <div style="font-size: 85%;">({{{signature_type}}})</div> }}</div>}}
{{#if: {{{website|}}} |<div style="text-align: center; margin-top: 8px;"><strong>Website:</strong><br>{{{website}}}</div>}}
</div>
</div>
<noinclude>
<pre>
{{Infobox artist
| honorific_prefix =
| name =
| honorific_suffix =
| icon =
| image =
| image_size =
| alt =
| caption =
| native_name =
| native_name_lang =
| birth_name =
| birth_date =
| birth_place =
| baptised =
| death_date =
| death_place =
| resting_place =
| resting_place_coordinates =
| education =
| alma_mater =
| known_for =
| notable_works =
| style =
| movement =
| elected =
| patrons =
| memorials =
| spouse =
| partner =
| children =
| parents =
| mother =
| father =
| relatives =
| family =
| awards =
| signature =
| signature_type =
| signature_size =
| signature_alt =
| website =
}}
</pre>
{{Documentation}}
</noinclude>
ecn6fy7q7s40a74k8nlgzk2zphpuqdf
Calabar Chic
0
3103
11902
2026-04-22T15:48:20Z
Zahraswaty
193
Created page with "Calabar Chic nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11902
wikitext
text/x-wiki
Calabar Chic nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
i2fjjcptj7lisw11veuzcl2t4h9b2ev
Teniola Aladese
0
3104
11903
2026-04-22T16:37:13Z
Zahraswaty
193
Created page with "'''Teniola Aladese '''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11903
wikitext
text/x-wiki
'''Teniola Aladese '''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
so1vad2cxjfuehpkrrn5gnmtuh2r18t
Allwell Ademola
0
3105
11904
2026-04-22T16:39:04Z
Zahraswaty
193
Created page with "'''Allwell Ademola'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11904
wikitext
text/x-wiki
'''Allwell Ademola'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
0taak5m1zkczebf1e5bvpidy4i24b01
11905
11904
2026-04-22T16:40:03Z
Zahraswaty
193
11905
wikitext
text/x-wiki
'''Allwell Ademola''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
no5k61re4aimf0bwda9sswqe5iqomrc
Queen Blessing Ebigieson
0
3106
11906
2026-04-22T16:41:20Z
Zahraswaty
193
Created page with "'''Queen Blessing Ebigieson''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11906
wikitext
text/x-wiki
'''Queen Blessing Ebigieson''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
5sk3nwf5jac0md0gm4w1rsfv3g4rp6t
Fatima Faloye
0
3107
11907
2026-04-22T16:43:16Z
Zahraswaty
193
Created page with "'''Fatima Faloye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11907
wikitext
text/x-wiki
'''Fatima Faloye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
e053s7yyqdeycu00smdtke003yc3xyr
Gbubemi Ejeye
0
3108
11908
2026-04-22T16:46:35Z
Zahraswaty
193
Created page with "'''Gbubemi Ejeye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11908
wikitext
text/x-wiki
'''Gbubemi Ejeye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
exijj555oad2ssj4fjeir0fh8idsqzy
Toyin Lawani
0
3109
11909
2026-04-22T16:49:45Z
Zahraswaty
193
Created page with "'''Toyin Lawani''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11909
wikitext
text/x-wiki
'''Toyin Lawani''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
qflfwod55lkisy56aoua6ztay5qkgfo
Layole Oyatogun
0
3110
11910
2026-04-22T16:52:03Z
Zahraswaty
193
Created page with "'''Layole Oyatogun''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11910
wikitext
text/x-wiki
'''Layole Oyatogun''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
o0inkjo48ejzz0ozfzsxm4dh0d9cc32
Funmi Martins
0
3111
11911
2026-04-22T16:53:40Z
Zahraswaty
193
Created page with "'''Funmi Martins''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11911
wikitext
text/x-wiki
'''Funmi Martins''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
jsdqg53d67xjb3gjqrh2cx5hy8swngq
Nneka Isaac Moses
0
3112
11912
2026-04-22T16:55:01Z
Zahraswaty
193
Created page with "'''Nneka Isaac Moses''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11912
wikitext
text/x-wiki
'''Nneka Isaac Moses''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rdw28e1o63jd9jhgsbv5mmcon55zqu2
Chinyere Nwabueze
0
3113
11913
2026-04-22T16:56:10Z
Zahraswaty
193
Created page with "'''Chinyere Nwabueze''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11913
wikitext
text/x-wiki
'''Chinyere Nwabueze''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rz8to3ox8v1v3uatqypeg3bhxqekp37
Rita Nzelu
0
3114
11914
2026-04-22T16:57:38Z
Zahraswaty
193
Created page with "'''Rita Nzelu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11914
wikitext
text/x-wiki
'''Rita Nzelu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
dvx1i022k2giu7qwrj4m4rf7ymo057o
Iyabo Ojo
0
3115
11915
2026-04-22T16:59:16Z
Zahraswaty
193
Created page with "'''Iyabo Ojo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11915
wikitext
text/x-wiki
'''Iyabo Ojo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rslk6eui21h7dbz5yp42uvrzeb7ihq3
Okwui Okpokwasili
0
3116
11916
2026-04-22T17:04:57Z
Zahraswaty
193
Created page with "'''Okwui Okpokwasili''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11916
wikitext
text/x-wiki
'''Okwui Okpokwasili''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
mh2cvuqg7e8x74dzhgdj33s6ru7chnb
Bolanle Olukanni
0
3117
11917
2026-04-22T17:06:18Z
Zahraswaty
193
Created page with "'''Bolanle Olukanni''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11917
wikitext
text/x-wiki
'''Bolanle Olukanni''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
9gj29t8d1akkxitum0kiaws8zo9f0jm
Oluwapelumi Arameedey Kayode
0
3118
11918
2026-04-22T17:08:01Z
Zahraswaty
193
Created page with "'''Oluwapelumi Arameedey Kayode''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11918
wikitext
text/x-wiki
'''Oluwapelumi Arameedey Kayode''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rpdfy0pui1ef3fbmky8n6c8eargmgi5
Orisabunmi
0
3119
11919
2026-04-22T17:09:45Z
Zahraswaty
193
Created page with "'''Orisabunmi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11919
wikitext
text/x-wiki
'''Orisabunmi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
8p0cgn94z8rro87lkzpseqr4pmbuzzx
Imade Osawaru
0
3120
11920
2026-04-22T17:12:28Z
Zahraswaty
193
Created page with "'''Imade Osawaru''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11920
wikitext
text/x-wiki
'''Imade Osawaru''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
89vaiiphktswarwr4984csqp4t0xfhg
Anita Osikweme Osikhena
0
3121
11921
2026-04-22T19:05:15Z
Zahraswaty
193
Created page with "'''Anita Osikweme Osikhena''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11921
wikitext
text/x-wiki
'''Anita Osikweme Osikhena''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
fuw4f82s7zoxy4llkmnev9mu9uqc7v5
Patience Ozokwor
0
3122
11922
2026-04-22T19:08:21Z
Zahraswaty
193
Created page with "'''Patience Ozokwor''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11922
wikitext
text/x-wiki
'''Patience Ozokwor''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
smqx9oknw3j4uat3bykyj51vjs14qed
Sharon Rotimi
0
3123
11923
2026-04-22T19:10:39Z
Zahraswaty
193
Created page with "'''Sharon Rotimi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11923
wikitext
text/x-wiki
'''Sharon Rotimi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
hksbxu3owej8awbuw025zpmvxhqss3x
Memry Savanhu
0
3124
11924
2026-04-22T19:12:48Z
Zahraswaty
193
Created page with "'''Memry Savanhu'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11924
wikitext
text/x-wiki
'''Memry Savanhu'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
cdpyyxtfc26lj0ey51m8a82vaz611q8
Module:Hash
828
3125
11925
2026-04-22T19:13:25Z
De-Invincible
36
Created page with "require("strict") local p = {} function p.main(frame) local algo = frame.args['algo'] or frame.args[1] local value = frame.args['value'] or frame.args[2] return mw.hash.hashValue( algo, value ) end function p.list() local list = {} for i, v in ipairs(mw.hash.listAlgorithms()) do list[i] = "<code>" .. v .. "</code>" end return table.concat(list, ",\n") end return p"
11925
Scribunto
text/plain
require("strict")
local p = {}
function p.main(frame)
local algo = frame.args['algo'] or frame.args[1]
local value = frame.args['value'] or frame.args[2]
return mw.hash.hashValue( algo, value )
end
function p.list()
local list = {}
for i, v in ipairs(mw.hash.listAlgorithms()) do
list[i] = "<code>" .. v .. "</code>"
end
return table.concat(list, ",\n")
end
return p
atbperlwqbkbyau69rvixypjrfnebdo
11932
11925
2026-04-22T19:23:10Z
De-Invincible
36
11932
Scribunto
text/plain
local getArgs = require('Module:Arguments').getArgs
local p = {}
-- Function to check if a value exists within a table
local function inTable(table, value)
for k, v in pairs(table) do
if v == value then
return true
end
end
return false
end
-- Function to list all available hashing algorithms
function p.list(frame)
return table.concat(mw.hash.listAlgorithms(), '; ')
end
-- Main function to generate the hash value
function p.main(frame)
local args = getArgs(frame, { frameOnly = true })
local algorithm
-- Error if no input string is provided
if not args[1] then
return '<span class="error">No string defined for hashing.</span>'
end
if args[2] then
-- Check if the requested algorithm is supported by MediaWiki
if not inTable(mw.hash.listAlgorithms(), args[2]) then
return '<span class="error">Hash algorithm ' .. args[2] .. ' is not supported or the name is incorrect. See the list of available algorithms in the <kbd>mw.hash.listAlgorithms()</kbd> function.</span>'
end
algorithm = args[2]
else
-- Default algorithm if none is specified
algorithm = 'fnv164'
end
return mw.hash.hashValue(algorithm, args[1])
end
return p
9hvz85e1gtupoiaqkwpn9x01svxp5pz
Uche Chika Elumelu
0
3126
11926
2026-04-22T19:13:44Z
Zahraswaty
193
Created page with "'''Uche Chika Elumelu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11926
wikitext
text/x-wiki
'''Uche Chika Elumelu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
0i7f1bfmfamipv85fc25352p2ndvm56
Bukky Wright
0
3127
11927
2026-04-22T19:15:49Z
Zahraswaty
193
Created page with "'''Bukky Wright''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11927
wikitext
text/x-wiki
'''Bukky Wright''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
mtkpgi67f5wmxazmto7vwjk4zdc3adv
Faithia Williams
0
3128
11928
2026-04-22T19:17:02Z
Zahraswaty
193
Created page with "'''Faithia Williams''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11928
wikitext
text/x-wiki
'''Faithia Williams''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
1y0j5xczcos57wyat6cwbwqulxgb6fv
Dolly Unachukwu
0
3129
11929
2026-04-22T19:18:34Z
Zahraswaty
193
Created page with "'''Dolly Unachukwu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11929
wikitext
text/x-wiki
'''Dolly Unachukwu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
gn3npcgmynmx4fjn3dk7umth5fcz3r8
Adaora Ukoh
0
3130
11930
2026-04-22T19:20:18Z
Zahraswaty
193
Created page with "'''Adaora Ukoh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11930
wikitext
text/x-wiki
'''Adaora Ukoh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
jnp894s4hyvp49qdglq7g1grk555ej6
Idowu Philips
0
3131
11931
2026-04-22T19:22:42Z
Zahraswaty
193
Created page with "'''Idowu Philips''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11931
wikitext
text/x-wiki
'''Idowu Philips''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
bki21evz7gz57pfilzl5wou3mcicasv
Tampilet:Infobox/below
10
3132
11934
2026-04-22T19:39:35Z
De-Invincible
36
Created page with "<includeonly>{{#if:{{{below|}}}|<tr><td colspan="2" class="infobox-below {{{below_class|}}}" style="{{{total_below_style|}}};{{{below_style|}}}">{{{below|}}}</td></tr>}}</includeonly><noinclude>{{doc}}</noinclude>"
11934
wikitext
text/x-wiki
<includeonly>{{#if:{{{below|}}}|<tr><td colspan="2" class="infobox-below {{{below_class|}}}" style="{{{total_below_style|}}};{{{below_style|}}}">{{{below|}}}</td></tr>}}</includeonly><noinclude>{{doc}}</noinclude>
qxe798nly58ts3aoia0uvyt453oc8ad
Tampilet:Tlinks
10
3133
11936
2026-04-22T19:52:39Z
De-Invincible
36
Created page with "<templatestyles src="Tampilet:Tlinks/styles.css" /><div style="{{#if: {{yesno|{{{right|}}}}} | float:none; }} {{#if: {{{fontsize|}}} | font-size:{{{fontsize|}}}px; }}" class="ts-tlinks-tlinks plainlinks"><span class="mw-editsection-bracket">[</span><!-- -->{{join|separator=<span class="mw-editsection-divider"> &#124; </span> |1={{#ifexist: {{#rel2abs: {{{lc|}}} }} | {{#ifeq: {{{dislooklink|{{{noview|}}}}}} | yes || [[{{{lc}}}|bax]] }} }} |2={{#ifexist: {{#rel2abs..."
11936
wikitext
text/x-wiki
<templatestyles src="Tampilet:Tlinks/styles.css" /><div style="{{#if: {{yesno|{{{right|}}}}} | float:none; }} {{#if: {{{fontsize|}}} | font-size:{{{fontsize|}}}px; }}" class="ts-tlinks-tlinks plainlinks"><span class="mw-editsection-bracket">[</span><!--
-->{{join|separator=<span class="mw-editsection-divider"> &#124; </span>
|1={{#ifexist: {{#rel2abs: {{{lc|}}} }}
| {{#ifeq: {{{dislooklink|{{{noview|}}}}}} | yes || [[{{{lc}}}|bax]] }}
}}
|2={{#ifexist: {{#rel2abs: {{{lc|}}} }}
| [{{fullurl:{{#rel2abs: {{{lc}}} }}|action=edit}} redaktə]
}}
|3={{#ifexist: {{#rel2abs: {{{lc|}}} }}
| {{#ifeq: {{{dishistlink|{{{nohistory|}}}}}} | yes || [{{fullurl:{{#rel2abs: {{{lc}}} }}|action=history}} tarixçə] }}
}}
|4={{#ifexist: {{#rel2abs: {{{lc|}}} }}
|
| [{{fullurl:{{#rel2abs: {{{lc}}} }}|action=edit&redlink=1}} yarat]
}}
|5={{#ifeq: {{{diswatchlink|{{{nowatch|}}}}}} | yes || [{{fullurl:{{#rel2abs: {{{lc}}} }}|action=watch}} izlə] }}
|6={{#ifeq: {{{disupdlink|{{{noupdate|}}}}}} | yes || <span class="purgelink">[{{fullurl:{{FULLPAGENAME}}|action=purge}} yenilə]</span> }}
}}<span class="mw-editsection-bracket">]</span></div><noinclude>{{documentation}}</noinclude>
sj53nvhlwax0vzghiaqnwjtimvrran0
Tampilet:Tlinks/styles.css
10
3134
11937
2026-04-22T19:54:11Z
De-Invincible
36
Created page with ".ts-tlinks-tlinks { font-weight: normal; float: right; font-size: 13px; } .ts-tlinks-tlinks .mw-editsection-divider { display: inline; }"
11937
sanitized-css
text/css
.ts-tlinks-tlinks {
font-weight: normal;
float: right;
font-size: 13px;
}
.ts-tlinks-tlinks .mw-editsection-divider {
display: inline;
}
ki2ysdkyls1iradgvhmcw1bxe6mkgez
Tampilet:Join
10
3135
11938
2026-04-22T19:57:41Z
De-Invincible
36
Created page with "{{<includeonly>safesubst:</includeonly>#invoke:Separated entries|main|separator={{{separator|}}}}}<noinclude>{{doc}}</noinclude>"
11938
wikitext
text/x-wiki
{{<includeonly>safesubst:</includeonly>#invoke:Separated entries|main|separator={{{separator|}}}}}<noinclude>{{doc}}</noinclude>
7x1yrn8h7m5xngic9zodiu44fzl3kej
Genny Uzoma
0
3136
11940
2026-04-22T20:11:13Z
Zeenatee5
230
Created page with "'''Genny Uzoma''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11940
wikitext
text/x-wiki
'''Genny Uzoma''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
42qhk0aa3m9p0f8qzr2oto1mil03qqv
Joke Silva
0
3137
11941
2026-04-22T20:16:57Z
Zahraswaty
193
Created page with "'''Joke Silva''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11941
wikitext
text/x-wiki
'''Joke Silva''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
o9zw937ej4t7xb2cw0g5qe5azn326a8
Idiat Shobande
0
3138
11942
2026-04-22T20:18:24Z
Zahraswaty
193
Created page with "'''Idiat Shobande''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11942
wikitext
text/x-wiki
'''Idiat Shobande''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
7hjkzg9ctxmd4u5aevgwtqli070xnr8
Toyin Raji
0
3139
11943
2026-04-22T20:22:03Z
Zahraswaty
193
Created page with "'''Toyin Raji''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11943
wikitext
text/x-wiki
'''Toyin Raji''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
0wj0dbonv7vsetadu1qzsgpsar61lq5
Ireti Osayemi
0
3140
11944
2026-04-22T20:23:52Z
Zahraswaty
193
Created page with "'''Ireti Osayemi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11944
wikitext
text/x-wiki
'''Ireti Osayemi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
og0cchubhtvysbj4eftquixy1om3kh7
Onyeka Onwenu
0
3141
11945
2026-04-22T20:25:23Z
Zahraswaty
193
Created page with "'''Onyeka Onwenu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11945
wikitext
text/x-wiki
'''Onyeka Onwenu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ri4fessf1ie1ctjgzr2vdfb82l52zgy
Uzoamaka Onuoha
0
3142
11946
2026-04-22T20:26:34Z
Zeenatee5
230
Created page with " '''Uzoamaka Onuoha''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11946
wikitext
text/x-wiki
'''Uzoamaka Onuoha''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
n7ovgctk5iqv2etutilcsry80bazf5g
Georgina Onuoha
0
3143
11947
2026-04-22T20:27:06Z
Zahraswaty
193
Created page with "'''Georgina Onuoha''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11947
wikitext
text/x-wiki
'''Georgina Onuoha''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
74s63uu47cekq3bb9a7065du95c10p1
Rachel Oniga
0
3144
11948
2026-04-22T20:29:29Z
Zahraswaty
193
Created page with "'''Rachel Oniga''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11948
wikitext
text/x-wiki
'''Rachel Oniga''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
trau5ghkofcqlbyi3g22te9vl8sdeay
Uchechi Treasure Okonkwo
0
3145
11949
2026-04-22T20:31:46Z
Zeenatee5
230
Created page with "'''Uchechi Treasure Okonkwo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11949
wikitext
text/x-wiki
'''Uchechi Treasure Okonkwo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
b7f1gfr0e935xsfnxczbohbpw10jdcv
11951
11949
2026-04-22T20:33:29Z
Zeenatee5
230
11951
wikitext
text/x-wiki
'''Uchechi Treasure Okonkwo nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
je6o261lz9wd384uwxzjxus89mbtie7
11953
11951
2026-04-22T20:35:05Z
Zeenatee5
230
11953
wikitext
text/x-wiki
'''Uchechi Treasure Okonkwo
''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
a2ehd1ja5sw2dpgfkwww6rhad89mhz2
Ololade Ebong
0
3146
11950
2026-04-22T20:32:39Z
Zahraswaty
193
Created page with "'''Ololade Ebong''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11950
wikitext
text/x-wiki
'''Ololade Ebong''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
8r6u626arhsxznmq0sn8j1dr98ithhf
Toks Olagundoye
0
3147
11952
2026-04-22T20:34:30Z
Zahraswaty
193
Created page with "'''Toks Olagundoye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11952
wikitext
text/x-wiki
'''Toks Olagundoye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
pj5be4fxoaug00bqzzx0s3xnkg251cg
Becky Okorie
0
3148
11954
2026-04-22T20:36:04Z
Zahraswaty
193
Created page with "'''Becky Okorie''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11954
wikitext
text/x-wiki
'''Becky Okorie''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
6ibwn94smt3y1gaog878lnv5dbex6gf
Nkiru Sylvanus
0
3149
11955
2026-04-22T20:37:21Z
Zeenatee5
230
Created page with " '''Nkiru Sylvanus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11955
wikitext
text/x-wiki
'''Nkiru Sylvanus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
i8c0e11920j8jj2yug30yxs4ja0qasq
Thelma Okoduwa
0
3150
11956
2026-04-22T20:37:36Z
Zahraswaty
193
Created page with "'''Thelma Okoduwa''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11956
wikitext
text/x-wiki
'''Thelma Okoduwa''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
32rp6s47lpgxsihaii3k0xk90f6bhbp
Lauritta Onye
0
3151
11957
2026-04-22T20:39:28Z
Zeenatee5
230
Created page with "'''Lauritta Onye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11957
wikitext
text/x-wiki
'''Lauritta Onye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
8vfsgobcqqv0ly53k33rycm54qdjkmm
Mercy Eke
0
3152
11958
2026-04-22T20:42:32Z
Zeenatee5
230
Created page with " '''Mercy Eke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11958
wikitext
text/x-wiki
'''Mercy Eke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
h0fgyprt6d70bx6eieqecskymzfwsjv
Stephanie Okereke Linus
0
3153
11959
2026-04-22T20:44:09Z
Zeenatee5
230
Created page with "'''Stephanie Okereke Linus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11959
wikitext
text/x-wiki
'''Stephanie Okereke Linus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
id9m2uydt0lummoligyuj9bmpjoe1rd
Cynthia Okereke
0
3154
11960
2026-04-22T20:44:19Z
Zahraswaty
193
Created page with "'''Cynthia Okereke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11960
wikitext
text/x-wiki
'''Cynthia Okereke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
na9w33frp6ij0mb73xhmhygzstnjt7x
Steph-Nora Okere
0
3155
11961
2026-04-22T20:45:40Z
Zeenatee5
230
Created page with "'''Steph-Nora Okere''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11961
wikitext
text/x-wiki
'''Steph-Nora Okere''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
cp0y9rf6a00898hla7cbki12fbri6x0
Ronke Oshodi Oke
0
3156
11962
2026-04-22T20:47:17Z
Zahraswaty
193
Created page with "'''Ronke Oshodi Oke'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11962
wikitext
text/x-wiki
'''Ronke Oshodi Oke'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
flpk3999azkecm4l6x0zgs9l2u8jhf1
Daniella Okeke
0
3157
11963
2026-04-22T20:47:33Z
Zeenatee5
230
Created page with "'''Daniella Okeke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11963
wikitext
text/x-wiki
'''Daniella Okeke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
svtrqkkp6a3kw4rxgomcxf7zfdbrjg1
Aishat Obi
0
3158
11964
2026-04-22T20:49:04Z
Zeenatee5
230
Created page with "'''Aishat Obi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11964
wikitext
text/x-wiki
'''Aishat Obi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rn8qgc5bgk8yo46dzfzrfmlztpt5a8x
Odera Olivia Orji
0
3159
11965
2026-04-22T20:50:00Z
Zahraswaty
193
Created page with "'''Odera Olivia Orji''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11965
wikitext
text/x-wiki
'''Odera Olivia Orji''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
6emzo0ulbb18pwp2nu3lr1xcd8wwzzx
Victoria Nwogu
0
3160
11966
2026-04-22T20:51:04Z
Zeenatee5
230
Created page with "'''Victoria Nwogu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11966
wikitext
text/x-wiki
'''Victoria Nwogu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
d8egs3z5qs3ldxwhp1kbddfok5mkhvx
Mabel Oboh
0
3161
11967
2026-04-22T20:51:25Z
Zahraswaty
193
Created page with "'''Mabel Oboh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11967
wikitext
text/x-wiki
'''Mabel Oboh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
2v0jbk4ote964wspcr3s61wep8x4p9z
Genevieve Nnaji
0
3162
11968
2026-04-22T20:52:43Z
Zeenatee5
230
Created page with "'''Genevieve Nnaji''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11968
wikitext
text/x-wiki
'''Genevieve Nnaji''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
1ku2h241st6933sd5gchi9a0mic2mok
Ngozi Nwosu
0
3163
11969
2026-04-22T20:52:56Z
Zahraswaty
193
Created page with "'''Ngozi Nwosu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11969
wikitext
text/x-wiki
'''Ngozi Nwosu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
4644c4rakpfmxsjvqce2p1n02fbjpjo
Elma Mbadiwe
0
3164
11970
2026-04-22T20:54:20Z
Zeenatee5
230
Created page with "'''Elma Mbadiwe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11970
wikitext
text/x-wiki
'''Elma Mbadiwe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
jyc74wta358xy399oc0jvw3hiih7hqz
Anne Njemanze
0
3165
11971
2026-04-22T20:55:03Z
Zahraswaty
193
Created page with "'''Anne Njemanze''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11971
wikitext
text/x-wiki
'''Anne Njemanze''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
hdebry3hske3stczj7jcmzov8s9oq48
Oby Kechere
0
3166
11972
2026-04-22T20:55:56Z
Zeenatee5
230
Created page with "'''Oby Kechere''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11972
wikitext
text/x-wiki
'''Oby Kechere''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
5yil992asr4xlglf9exj1hn1v9fht8g
Empress Njamah
0
3167
11973
2026-04-22T20:56:16Z
Zahraswaty
193
Created page with "'''Empress Njamah''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11973
wikitext
text/x-wiki
'''Empress Njamah''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
sva1uk9hwu44ytdmi5nzo419xrwnk0w
Ada Jesus
0
3168
11974
2026-04-22T20:58:02Z
Zeenatee5
230
Created page with " '''Ada Jesus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11974
wikitext
text/x-wiki
'''Ada Jesus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
gpeelhofv3osa0gtifl6jml9giy6jpl
Eva Mottley
0
3169
11975
2026-04-22T20:58:13Z
Zahraswaty
193
Created page with "'''Eva Mottley''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11975
wikitext
text/x-wiki
'''Eva Mottley''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
nkttiql24c0k31tl08ue9nsudjcwa4l
Adesua Etomi
0
3170
11976
2026-04-22T21:00:14Z
Zeenatee5
230
Created page with " '''Adesua Etomi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11976
wikitext
text/x-wiki
'''Adesua Etomi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
6q4kkejbo4zx9feq6tj4bjq3hznxuuz
Uche Mac-Auley
0
3171
11977
2026-04-22T21:01:30Z
Zahraswaty
193
Created page with "'''Uche Mac-Auley''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11977
wikitext
text/x-wiki
'''Uche Mac-Auley''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
oxi11swxqszphr3fw4jnhc8zcxmzaqc
Emmanuella
0
3172
11978
2026-04-22T21:02:16Z
Zeenatee5
230
Created page with " '''Emmanuella''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11978
wikitext
text/x-wiki
'''Emmanuella''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
lfzi053gmjvxkodous7nl2fea7lh4mj
Alex Lopez (actress)
0
3173
11979
2026-04-22T21:02:57Z
Zahraswaty
193
Created page with "'''Alex Lopez (actress)''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11979
wikitext
text/x-wiki
'''Alex Lopez (actress)''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
sai9qd46fzjfcwykouxwkzdv8etlwa9
Uru Eke
0
3174
11980
2026-04-22T21:03:59Z
Zeenatee5
230
Created page with "'''Uru Eke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11980
wikitext
text/x-wiki
'''Uru Eke''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rhp5fmk5nnxr1nmpexdma0yl4lhet19
Sola Kosoko
0
3175
11981
2026-04-22T21:05:12Z
Zahraswaty
193
Created page with "'''Sola Kosoko''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11981
wikitext
text/x-wiki
'''Sola Kosoko''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
hbl2pgidrwf39z9k2pqsza4y7epr5ss
Rita Dominic
0
3176
11982
2026-04-22T21:06:25Z
Zeenatee5
230
Created page with "'''Rita Dominic''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11982
wikitext
text/x-wiki
'''Rita Dominic''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
67y24oxdxcim2iurqoz72cbuzeei42m
Henrietta Kosoko
0
3177
11983
2026-04-22T21:06:45Z
Zahraswaty
193
Created page with "'''Henrietta Kosoko''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11983
wikitext
text/x-wiki
'''Henrietta Kosoko''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
m0sgf2mo9jl3njep00eqfh32p9uy02d
Nichole Banna
0
3178
11984
2026-04-22T21:08:02Z
Zeenatee5
230
Created page with "'''Nichole Banna''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11984
wikitext
text/x-wiki
'''Nichole Banna''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
lu7oqfjf8n7mw0001jz0gd9psmmjmxx
Madam Kofo
0
3179
11985
2026-04-22T21:08:37Z
Zahraswaty
193
Created page with "'''Madam Kofo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11985
wikitext
text/x-wiki
'''Madam Kofo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
7xugcoctjpx4hy58ffcn661pnferd10
Eucharia Anunobi
0
3180
11986
2026-04-22T21:10:10Z
Zeenatee5
230
Created page with "'''Eucharia Anunobi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11986
wikitext
text/x-wiki
'''Eucharia Anunobi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
q7kmjspkd0w2w2u70sbq92uic8jbg75
Carol King (actress)
0
3181
11987
2026-04-22T21:10:17Z
Zahraswaty
193
Created page with "'''Carol King (actress)''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11987
wikitext
text/x-wiki
'''Carol King (actress)''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
qwy7n1ja7755nxh0sps3b7kw85g824f
Afro Candy
0
3182
11988
2026-04-22T21:11:56Z
Zeenatee5
230
Created page with "'''Afro Candy''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11988
wikitext
text/x-wiki
'''Afro Candy''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
5or4flvt44izv8jpcflk9kdeppkoem3
Sandra Achums
0
3183
11989
2026-04-22T21:14:15Z
Zeenatee5
230
Created page with " '''Sandra Achums''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11989
wikitext
text/x-wiki
'''Sandra Achums''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
3sjz7evgpwv218mrvsawvahx0is1j2o
Khabirat Kafidipe
0
3184
11990
2026-04-22T21:15:05Z
Zahraswaty
193
Created page with "'''Khabirat Kafidipe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11990
wikitext
text/x-wiki
'''Khabirat Kafidipe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rgzjm873l1c6rhatqw2mtdjuol51aln
Adesewa Josh
0
3185
11991
2026-04-22T21:24:19Z
Zahraswaty
193
Created page with "'''Adesewa Josh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11991
wikitext
text/x-wiki
'''Adesewa Josh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
7zzqsr5urgua001e83b55tflbadw598
Munachi Abii
0
3186
11996
2026-04-23T04:26:59Z
Zeenatee5
230
Created page with "'''Munachi Abii''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11996
wikitext
text/x-wiki
'''Munachi Abii''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
nieeecbvvfgvf74tjs77xpfatxcjeaa
Zainab Balogun
0
3187
11997
2026-04-23T04:33:50Z
Zeenatee5
230
Created page with "'''Zainab Balogun''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11997
wikitext
text/x-wiki
'''Zainab Balogun''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ixl6vb6ra1mi35ue2dnuf8m45mgbmh1
Stella Damasus
0
3188
11998
2026-04-23T04:36:32Z
Zeenatee5
230
Created page with "'''Stella Damasus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11998
wikitext
text/x-wiki
'''Stella Damasus''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ihxbxzfmh4gysgt2zvchqmd6d8gneog
Demi Isaac
0
3189
11999
2026-04-23T04:37:59Z
Zeenatee5
230
Created page with "'''Demi Isaac''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
11999
wikitext
text/x-wiki
'''Demi Isaac''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
6yw6hev2jhx4mc4qz9msiq7j248ezb6
Oghenekaro Itene
0
3190
12000
2026-04-23T04:39:56Z
Zeenatee5
230
Created page with "'''Oghenekaro Itene''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12000
wikitext
text/x-wiki
'''Oghenekaro Itene''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
czt5qvq49gav1y6n8dp5tt3rx9c18jt
Ruth Kadiri
0
3191
12001
2026-04-23T04:41:27Z
Zeenatee5
230
Created page with "'''Ruth Kadiri''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12001
wikitext
text/x-wiki
'''Ruth Kadiri''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ji7okm2dxa197glitc9rildb7h6vfbm
Matilda Obaseki
0
3192
12002
2026-04-23T04:42:52Z
Zeenatee5
230
Created page with "'''Matilda Obaseki''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12002
wikitext
text/x-wiki
'''Matilda Obaseki''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
88ez5ec9ayvnqyeziz4ff8qyrbqqgwg
Omoni Oboli
0
3193
12003
2026-04-23T04:44:19Z
Zeenatee5
230
Created page with "'''Omoni Oboli''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12003
wikitext
text/x-wiki
'''Omoni Oboli''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
3jo55vil18kzew50ehb1fv5dpe0fiw4
Lisa Omorodion
0
3194
12004
2026-04-23T04:46:05Z
Zeenatee5
230
Created page with "'''Lisa Omorodion''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12004
wikitext
text/x-wiki
'''Lisa Omorodion''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
b7bz0ax4773q5841aalxxj01ohubmlv
Ini Dima-Okojie
0
3195
12005
2026-04-23T04:47:58Z
Zeenatee5
230
Created page with "'''Ini Dima-Okojie''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12005
wikitext
text/x-wiki
'''Ini Dima-Okojie''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
oofalb1mjkef50ulwyb1husc72ev837
Jemima Osunde
0
3196
12006
2026-04-23T04:49:53Z
Zeenatee5
230
Created page with "'''Jemima Osunde''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12006
wikitext
text/x-wiki
'''Jemima Osunde''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
g8qdlm1wq9fwqtorwhil0e7h3xundm1
Ivie Okujaye
0
3197
12007
2026-04-23T04:52:01Z
Zeenatee5
230
Created page with "'''Ivie Okujaye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12007
wikitext
text/x-wiki
'''Ivie Okujaye''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
hejp4d146rlmp5gro2ivj89zy3tq1qs
Uzoamaka Power
0
3198
12011
2026-04-23T04:57:26Z
Zeenatee5
230
Created page with "'''Uzoamaka Power''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12011
wikitext
text/x-wiki
'''Uzoamaka Power''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
qbe64hx1w2gmk67m5y18ixtdu0ap8sj
Chika Ike
0
3199
12012
2026-04-23T04:58:51Z
Zeenatee5
230
Created page with "'''Chika Ike''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12012
wikitext
text/x-wiki
'''Chika Ike''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
p5fj6kfme7m4mmthuf600ly1gclhjv3
Monalisa Chinda
0
3200
12013
2026-04-23T05:00:54Z
Zeenatee5
230
Created page with "'''Monalisa Chinda''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12013
wikitext
text/x-wiki
'''Monalisa Chinda''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ljjsepvv7ecublh3ni30oz0h6ti8qaf
Mercy Chinwo
0
3201
12014
2026-04-23T05:02:24Z
Zeenatee5
230
Created page with "'''Mercy Chinwo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12014
wikitext
text/x-wiki
'''Mercy Chinwo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
dcz3msxqz3n8dsdh9mdndkewhwc2y71
Tamara Eteimo
0
3202
12015
2026-04-23T05:04:28Z
Zeenatee5
230
Created page with "'''Tamara Eteimo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12015
wikitext
text/x-wiki
'''Tamara Eteimo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
owvpc5kz48dwcqxrl5eoql3d05z7ap3
Ibinabo Fiberesima
0
3203
12016
2026-04-23T05:06:01Z
Zeenatee5
230
Created page with "'''Ibinabo Fiberesima''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12016
wikitext
text/x-wiki
'''Ibinabo Fiberesima''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
kamix0s67nvmmbksytxc6v1qkutptvp
Bikiya Graham-Douglas
0
3204
12017
2026-04-23T05:07:24Z
Zeenatee5
230
Created page with "'''Bikiya Graham-Douglas''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12017
wikitext
text/x-wiki
'''Bikiya Graham-Douglas''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
apzpi5o7eex80z0ubl49pb5aa1dv4bn
Muma Gee
0
3205
12018
2026-04-23T05:09:30Z
Zeenatee5
230
Created page with "'''Muma Gee''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12018
wikitext
text/x-wiki
'''Muma Gee''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
emd0xn3x44a3ielytwflu4c16eqshhf
Yvonne Orji
0
3206
12019
2026-04-23T05:10:53Z
Zeenatee5
230
Created page with "''Yvonne Orji'' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12019
wikitext
text/x-wiki
''Yvonne Orji'' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ray3sr5x4dxoyfntb3098ad9cc8gxeu
Mary Uranta
0
3207
12020
2026-04-23T05:12:41Z
Zeenatee5
230
Created page with "'''Mary Uranta''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12020
wikitext
text/x-wiki
'''Mary Uranta''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
d1gy9o8r6nccb58kwfl6pkzpgr44e8n
Tampilet:Infobox person/color
10
3208
12021
2026-04-23T05:12:49Z
De-Invincible
36
Created page with "<includeonly>{{#switch: {{{1|}}} | scientist = #f0e68c <!-- khaki --> | writer = #f4bf92 <!-- unnamed pale orange --> | academic = #bfe0bf <!-- unnamed pale green --> | group_or_band = #b0c4de <!-- lightsteelblue --> | classical_ensemble = #b0e0e6 <!-- PowderBlue --> | temporary = #d3d3d3 <!-- LightGrey --> | #b0c4de }}</includeonly><noinclude> {{documentation}} </noinclude>"
12021
wikitext
text/x-wiki
<includeonly>{{#switch: {{{1|}}}
| scientist = #f0e68c <!-- khaki -->
| writer = #f4bf92 <!-- unnamed pale orange -->
| academic = #bfe0bf <!-- unnamed pale green -->
| group_or_band = #b0c4de <!-- lightsteelblue -->
| classical_ensemble = #b0e0e6 <!-- PowderBlue -->
| temporary = #d3d3d3 <!-- LightGrey -->
| #b0c4de
}}</includeonly><noinclude>
{{documentation}}
</noinclude>
d1uda12qs1xo4h7hu0wtvnrm7lpxqx0
Chioma Toplis
0
3209
12022
2026-04-23T05:14:31Z
Zeenatee5
230
Created page with "'''Chioma Toplis''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12022
wikitext
text/x-wiki
'''Chioma Toplis''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
6dpmzu8v0o7u0owq1ncyw9e2n4a5pts
Abimbola Craig
0
3210
12024
2026-04-23T05:16:02Z
Zeenatee5
230
Created page with "'''Abimbola Craig''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12024
wikitext
text/x-wiki
'''Abimbola Craig''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
5joz69ang07r9o5lr39u4rk33f3ggp7
Omawumi
0
3211
12025
2026-04-23T05:17:18Z
Zeenatee5
230
Created page with "''Omawumi'' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12025
wikitext
text/x-wiki
''Omawumi'' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
01ffz9t8uo0u6j1n6gf9eqw5i78q5cu
Jennifer Okere
0
3212
12032
2026-04-23T06:05:16Z
Zahraswaty
193
Created page with "'''Jennifer Okere''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12032
wikitext
text/x-wiki
'''Jennifer Okere''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
02n51wjsh2hflzfl4yy1zzz180axbgq
Uche Jombo
0
3213
12033
2026-04-23T06:07:37Z
Zahraswaty
193
Created page with "'''Uche Jombo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12033
wikitext
text/x-wiki
'''Uche Jombo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
gerlg4nfearu00xjktmm0ydyv675o1k
Victoria Inyama
0
3214
12034
2026-04-23T06:14:05Z
Zahraswaty
193
Created page with "'''Victoria Inyama''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12034
wikitext
text/x-wiki
'''Victoria Inyama''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
nda2kgsepoksawofr0twy5lzuhycqp8
Patience Oghre Imobhio
0
3215
12035
2026-04-23T06:16:12Z
Zahraswaty
193
Created page with "'''Patience Oghre Imobhio''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12035
wikitext
text/x-wiki
'''Patience Oghre Imobhio''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
oih694cyxxdq2cy58oip3bhzh1et4zy
Kate Henshaw
0
3216
12036
2026-04-23T06:17:51Z
Zahraswaty
193
Created page with "'''Kate Henshaw''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12036
wikitext
text/x-wiki
'''Kate Henshaw''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
46ve4m1cvyxixgyc1zaakd0so7mzivj
Lanre Hassan
0
3217
12037
2026-04-23T06:19:37Z
Zahraswaty
193
Created page with "'''Lanre Hassan''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12037
wikitext
text/x-wiki
'''Lanre Hassan''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rs9pg1ixpjezkfe7jhg6yi9azfbf0dq
Shan George
0
3218
12039
2026-04-23T06:37:05Z
Zahraswaty
193
Created page with "'''Shan George'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12039
wikitext
text/x-wiki
'''Shan George'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
oarytlixgnva2nd9jfq18udjzi47v6u
Iya Gbonkan
0
3219
12041
2026-04-23T06:38:18Z
Zahraswaty
193
Created page with "'''Iya Gbonkan''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12041
wikitext
text/x-wiki
'''Iya Gbonkan''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
cr8yr2bw89ouh0amwum2702agzfrqbw
Ngozi Ezeonu
0
3220
12043
2026-04-23T06:39:35Z
Zahraswaty
193
Created page with "'''Ngozi Ezeonu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12043
wikitext
text/x-wiki
'''Ngozi Ezeonu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
s6m8s6gvda9z5w8o1mjep2ux8a8uhg9
Lizzy Evoeme
0
3221
12044
2026-04-23T06:40:56Z
Zahraswaty
193
Created page with "'''Lizzy Evoeme''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12044
wikitext
text/x-wiki
'''Lizzy Evoeme''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
g043p13evomft68plg67iuq8ahappnz
Christy Essien-Igbokwe
0
3222
12045
2026-04-23T06:42:20Z
Zahraswaty
193
Created page with "'''Christy Essien-Igbokwe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12045
wikitext
text/x-wiki
'''Christy Essien-Igbokwe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
g0ngo0ljxwkjn0ur568zqydorc9kfsg
Francesca Yetunde Emanuel
0
3223
12046
2026-04-23T06:43:21Z
Zahraswaty
193
Created page with "'''Francesca Yetunde Emanuel''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12046
wikitext
text/x-wiki
'''Francesca Yetunde Emanuel''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
eov15lw2fsca4pu30rliw8bhrh9ma53
Ethel Ekpe
0
3224
12048
2026-04-23T06:44:31Z
Zahraswaty
193
Created page with "'''Ethel Ekpe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12048
wikitext
text/x-wiki
'''Ethel Ekpe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
9of9hb20ww8t4x44yh4e4hpxzvncgh8
Abiodun Duro-Ladipo
0
3225
12050
2026-04-23T06:46:23Z
Zahraswaty
193
Created page with "'''Abiodun Duro-Ladipo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12050
wikitext
text/x-wiki
'''Abiodun Duro-Ladipo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
0qxhnjvpb98qvfdv8sv89js97rbk69b
Lilian Bach
0
3226
12051
2026-04-23T06:48:37Z
Zahraswaty
193
Created page with "'''Lilian Bach''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12051
wikitext
text/x-wiki
'''Lilian Bach''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
tl61imhqrwyeymc9qh1o5emgy6pgsoi
Fausat Balogun
0
3227
12052
2026-04-23T06:49:44Z
Zahraswaty
193
Created page with "'''Fausat Balogun''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12052
wikitext
text/x-wiki
'''Fausat Balogun''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
meffx7kbgtk5vd7m6ch9fiuym8vyvoi
Esther Audu
0
3228
12055
2026-04-23T06:51:57Z
Zahraswaty
193
Created page with "'''Esther Audu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12055
wikitext
text/x-wiki
'''Esther Audu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
tk9im53zqxnw9bxwuglme5u3lkd9uir
Regina Askia-Williams
0
3229
12058
2026-04-23T06:58:12Z
Zahraswaty
193
Created page with "'''Regina Askia-Williams''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12058
wikitext
text/x-wiki
'''Regina Askia-Williams''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
q49zh0tu992r0j4jurq42axsdzcmfu7
Ebbe Bassey
0
3230
12063
2026-04-23T07:22:05Z
Zahraswaty
193
Created page with "'''Ebbe Bassey''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12063
wikitext
text/x-wiki
'''Ebbe Bassey''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
7auwlk6iesd09jkbflhc7v6i60d934t
Liz Benson
0
3231
12064
2026-04-23T07:23:42Z
Zahraswaty
193
Created page with "'''Liz Benson''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12064
wikitext
text/x-wiki
'''Liz Benson''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ff3t0rgsdxcl3pnrrbjpfhhp8wot6m8
Minah Bird
0
3232
12065
2026-04-23T07:25:00Z
Zahraswaty
193
Created page with "'''Minah Bird''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12065
wikitext
text/x-wiki
'''Minah Bird''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rofml4k0ik0ty99uveizme4kko1xmmq
Ada Ameh
0
3233
12066
2026-04-23T07:28:36Z
Zahraswaty
193
Created page with "'''Ada Ameh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12066
wikitext
text/x-wiki
'''Ada Ameh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
cx8kbmknlpf1s8xsprhjnqwpqpiea67
Hauwa Allahbura
0
3234
12067
2026-04-23T07:29:59Z
Zahraswaty
193
Created page with "'''Hauwa Allahbura''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12067
wikitext
text/x-wiki
'''Hauwa Allahbura''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rw1061x0xc45vu9dwkvwh125cudw21h
Bose Alao
0
3235
12068
2026-04-23T07:32:44Z
Zahraswaty
193
Created page with "'''Bose Alao''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12068
wikitext
text/x-wiki
'''Bose Alao''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
1uemqbdg3hcnprckk0x0p6jxea5ndkl
Hassanat Akinwande
0
3236
12070
2026-04-23T07:34:36Z
Zahraswaty
193
Created page with "'''Hassanat Akinwande''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12070
wikitext
text/x-wiki
'''Hassanat Akinwande''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
0mie9eb36nr6pjbaynrsfsn04vwnbn6
Bukky Ajayi
0
3237
12071
2026-04-23T07:36:34Z
Zahraswaty
193
Created page with "'''Bukky Ajayi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12071
wikitext
text/x-wiki
'''Bukky Ajayi''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ajedddcw2jtadku3zm2aqobxr17qch7
Taiwo Ajai-Lycett
0
3238
12073
2026-04-23T07:37:57Z
Zahraswaty
193
Created page with "'''Taiwo Ajai-Lycett''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12073
wikitext
text/x-wiki
'''Taiwo Ajai-Lycett''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
3xf4ut1i76hf91z5j9eychgc60xpaak
Tunbosun Aiyedehin
0
3239
12074
2026-04-23T07:39:58Z
Zahraswaty
193
Created page with "'''Tunbosun Aiyedehin''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12074
wikitext
text/x-wiki
'''Tunbosun Aiyedehin''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
l8tgila0t8oeh24boxy9f4cvcph2oo6
Padita Agu
0
3240
12075
2026-04-23T07:41:33Z
Zahraswaty
193
Created page with "'''Padita Agu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12075
wikitext
text/x-wiki
'''Padita Agu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
bzry03am5fiwbhwo7945uflvagmt1u9
Mayen Adetiba
0
3241
12076
2026-04-23T07:43:32Z
Zahraswaty
193
Created page with "'''Mayen Adetiba''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12076
wikitext
text/x-wiki
'''Mayen Adetiba''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ddfg4jl63hbdvqp56qjm2s4huwwusyp
Tampilet:Infobox person/styles.css
10
3242
12081
2026-04-23T07:55:31Z
De-Invincible
36
Created page with "/* Template:Infobox person/styles.css */ .custom-infobox { border: 1px solid #aaa; background-color: #f9f9f9; width: 315px; float: right; margin: 0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size: 90%; } .custom-infobox-header { text-align: center; font-size: 130%; font-weight: bold; color: #000; padding: 12px 5px; line-height: 1.2; background-color: #f9f9f9; position: relative; overflo..."
12081
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 315px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border-top: 1px solid #aaa;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border: 1px solid #eeeeee;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 90px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
our8wjm6hoa37q04yhrpyscda99ctb6
12093
12081
2026-04-23T08:14:56Z
De-Invincible
36
12093
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 315px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border-top: 1px solid #eeeeee;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border: 1px solid #eeeeee;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 90px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
72fg11zed05wsmxiy6w3apq9s2ptmu3
12094
12093
2026-04-23T08:16:15Z
De-Invincible
36
12094
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border-top: 1px solid #eeeeee;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border: 1px solid #eeeeee;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 90px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
gryjkad5nqmqfmeab9288nqiiahm0f9
12119
12094
2026-04-23T10:28:58Z
De-Invincible
36
12119
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border-top: 1px solid #eeeeee;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border: 1px solid #eeeeee;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 110px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
djm57cysqwmv288ap4nkuxhwuq4t0vh
12121
12119
2026-04-23T10:31:33Z
De-Invincible
36
12121
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border-top: 1px solid #eeeeee;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border: 1px solid #eeeeee;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 120px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
44v76t19zy0vqbelmtyvoejzqqerj4d
12122
12121
2026-04-23T10:32:18Z
De-Invincible
36
12122
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border-top: 1px solid #eeeeee;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #eeeeee;
border: 1px solid #eeeeee;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 150px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
7fy1hgh63i2aecxukt927qhnbkrzjwj
Uyoyou Adia
0
3243
12082
2026-04-23T07:56:00Z
Zahraswaty
193
Created page with "'''Uyoyou Adia''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12082
wikitext
text/x-wiki
'''Uyoyou Adia''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
shcgxmvc6of2z6sflnjy2iewrc5ly7f
Toyin Afolayan
0
3244
12083
2026-04-23T07:57:06Z
Zahraswaty
193
Created page with "'''Toyin Afolayan''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12083
wikitext
text/x-wiki
'''Toyin Afolayan''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
flxf3ntn3xusadlx0jzpuvqoibh5ott
Remi Abiola
0
3245
12084
2026-04-23T08:01:36Z
Zahraswaty
193
Created page with "'''Remi Abiola''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12084
wikitext
text/x-wiki
'''Remi Abiola''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
oiy0k1ubp6p224wzcgqdqpe9go2facy
Rosaline Meurer
0
3246
12087
2026-04-23T08:08:00Z
Zahraswaty
193
Created page with "'''Rosaline Meurer''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12087
wikitext
text/x-wiki
'''Rosaline Meurer''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
po1m4seqpx9lf4ke80g1zjuc20u1v46
Bayray McNwizu
0
3247
12088
2026-04-23T08:09:18Z
Zahraswaty
193
Created page with "'''Bayray McNwizu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12088
wikitext
text/x-wiki
'''Bayray McNwizu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ehqqb962nf57f6nzpmse7m9ch7hi619
Ufuoma McDermott
0
3248
12089
2026-04-23T08:10:42Z
Zahraswaty
193
Created page with "'''Ufuoma McDermott''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12089
wikitext
text/x-wiki
'''Ufuoma McDermott''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ag38tza9k8nuem1lcqc5rfpg35pnh3j
Lillian Echelon Mbadiwe
0
3249
12090
2026-04-23T08:12:05Z
Zahraswaty
193
Created page with "'''Lillian Echelon Mbadiwe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12090
wikitext
text/x-wiki
'''Lillian Echelon Mbadiwe''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
t0dkj2cqulc8qwsg9z7n5xaum87new7
Tina Mba
0
3250
12091
2026-04-23T08:13:52Z
Zahraswaty
193
Created page with "'''Tina Mba''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12091
wikitext
text/x-wiki
'''Tina Mba''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
2zbuxx6yiwclqc7ylg4he7grucu866v
Rekiya Yusuf
0
3251
12096
2026-04-23T08:47:00Z
Zahraswaty
193
Created page with "'''Rekiya Yusuf''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12096
wikitext
text/x-wiki
'''Rekiya Yusuf''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
n3evankpv493d9u5ehv60ek7edm45vw
Esther Uzodinma
0
3252
12097
2026-04-23T08:47:56Z
Zahraswaty
193
Created page with "'''Esther Uzodinma''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12097
wikitext
text/x-wiki
'''Esther Uzodinma''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
qfjzmoi0x1bdii40p9mq7gilbar2uzb
Paschaline Alex Okoli
0
3253
12098
2026-04-23T08:49:46Z
Zahraswaty
193
Created page with "'''Paschaline Alex Okoli''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12098
wikitext
text/x-wiki
'''Paschaline Alex Okoli''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rwcgsdbanrwfxobze97oeb3y1mn5eog
Becky Umeh
0
3254
12099
2026-04-23T08:51:02Z
Zahraswaty
193
Created page with "'''Becky Umeh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12099
wikitext
text/x-wiki
'''Becky Umeh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
8gbk9uff7s0zd6gp1vf1qc6f45tnbhm
Nelly Uchendu
0
3255
12100
2026-04-23T08:52:03Z
Zahraswaty
193
Created page with "'''Nelly Uchendu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12100
wikitext
text/x-wiki
'''Nelly Uchendu''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
60bosnj7x88pe0o37ibag5rti36knbm
Pepi Sonuga
0
3256
12101
2026-04-23T08:53:18Z
Zahraswaty
193
Created page with "'''Pepi Sonuga''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12101
wikitext
text/x-wiki
'''Pepi Sonuga''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
3l89na1yscob3m0ewzs1zaw8wkw548i
Doris Simeon
0
3257
12102
2026-04-23T08:54:24Z
Zahraswaty
193
Created page with "'''Doris Simeon''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12102
wikitext
text/x-wiki
'''Doris Simeon''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
7vjdj2pnuqhcl7o38r0teeeqgcmw03u
Genoveva Umeh
0
3258
12103
2026-04-23T08:55:48Z
Zahraswaty
193
Created page with "'''Genoveva Umeh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12103
wikitext
text/x-wiki
'''Genoveva Umeh''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ihcr9olsi3xfkeht1yzk3hnc33ctc7w
Folu Storms
0
3259
12104
2026-04-23T09:28:27Z
Zahraswaty
193
Created page with "'''Folu Storms''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12104
wikitext
text/x-wiki
'''Folu Storms''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
r453je9rbxlfw4uarfu00oqrt4knymq
Cynthia Shalom
0
3260
12105
2026-04-23T09:30:00Z
Zahraswaty
193
Created page with "'''Cynthia Shalom''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12105
wikitext
text/x-wiki
'''Cynthia Shalom''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
96wv5u0zqy48ripkl3493twr6bk7vnq
Abiola Segun-Williams
0
3261
12106
2026-04-23T09:33:40Z
Zahraswaty
193
Created page with "'''Abiola Segun-Williams''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12106
wikitext
text/x-wiki
'''Abiola Segun-Williams''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
alzcnq4yypr319ltjgeeagdbj4e9b9b
Tiwa Savage
0
3262
12107
2026-04-23T09:34:57Z
Zahraswaty
193
Created page with "'''Tiwa Savage''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12107
wikitext
text/x-wiki
'''Tiwa Savage''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
4zmelewbu1c6jdhvqe9tnpy8hf4pw0i
Diane Russet
0
3263
12108
2026-04-23T09:36:18Z
Zahraswaty
193
Created page with "'''Diane Russet''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12108
wikitext
text/x-wiki
'''Diane Russet''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
3ifgi4y9uheccsp5sulrv9xasdhgpp1
Ariyike Owolagba
0
3264
12109
2026-04-23T09:38:23Z
Zahraswaty
193
Created page with "'''Ariyike Owolagba''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12109
wikitext
text/x-wiki
'''Ariyike Owolagba''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ir1i36g5umnd6320xzrrez6u6yh76v0
Tampilet:Infobox person/doc
10
3265
12110
2026-04-23T09:44:24Z
De-Invincible
36
Created page with "{{documentation subpage}} <!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE --> {{tl|Infobox person}} may be used to summarize information about a particular person, usually at the top of an article. It is an alternative to more specific templates such as those listed at [[Wikipedia:WikiProject Biography/Infoboxes|WikiProject Biography/Infoboxes]] and within the [[:Category:People infobox templates|people infobox templates category]]. == Usage == The infobox may be adde..."
12110
wikitext
text/x-wiki
{{documentation subpage}}
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
{{tl|Infobox person}} may be used to summarize information about a particular person, usually at the top of an article. It is an alternative to more specific templates such as those listed at [[Wikipedia:WikiProject Biography/Infoboxes|WikiProject Biography/Infoboxes]] and within the [[:Category:People infobox templates|people infobox templates category]].
== Usage ==
The infobox may be added by pasting the template as shown below into an article and then filling in the desired fields. Any parameters left blank or omitted will not be displayed.
=== Blank template with basic parameters ===
<pre style="overflow: auto">
{{Infobox person
| name =
| image =
| alt =
| caption =
| birth_date = <!-- {{Birth date|YYYY|MM|DD}} -->
| birth_place =
| death_date = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date then birth date) -->
| death_place =
| nationality =
| other_names =
| known_for =
| occupation =
}}
</pre>
=== Blank template with all parameters ===
<pre style="overflow: auto">
{{Infobox person
| honorific_prefix =
| name =
| honorific_suffix =
| image =
| image_size =
| alt =
| caption =
| birth_name =
| birth_date = <!-- {{Birth date|YYYY|MM|DD}} -->
| birth_place =
| disappeared_date = <!-- {{Disappeared date and age|YYYY|MM|DD|YYYY|MM|DD}} (disappeared date then birth date) -->
| disappeared_place =
| disappeared_status =
| death_date = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date then birth date) -->
| death_place =
| death_cause =
| body_discovered =
| resting_place =
| resting_place_coordinates = <!-- {{Coord|LAT|LONG|display=inline}} -->
| monuments =
| residence =
| nationality =
| other_names =
| ethnicity =
| citizenship =
| education =
| alma_mater =
| occupation =
| years_active =
| employer =
| organization =
| agent =
| known_for =
| notable_works =
| style =
| influences =
| influenced =
| home_town =
| salary =
| net_worth =
| height =
| weight =
| television =
| title =
| term =
| predecessor =
| successor =
| party =
| movement =
| opponents =
| boards =
| religion =
| denomination =
| criminal_charge =
| criminal_penalty =
| criminal_status =
| spouse =
| partner =
| children =
| parents =
| relatives =
| callsign =
| awards =
| signature =
| signature_alt =
| signature_size =
| module =
| module2 =
| module3 =
| module4 =
| module5 =
| module6 =
| website = <!-- {{URL|www.example.com}} -->
| footnotes =
| box_width =
}}
</pre>
== Parameters ==
Do not use all these parameters for any one person. The list is long to cover a wide range of people. Only use those parameters that convey essential or notable information about the subject. Any parameters left blank or omitted will not be displayed. If a data field has more than one parameter name which can be used, the preferred name is listed first in '''bold''' print.
{| class="wikitable"
! style="text-align: left" | Parameter
! style="text-align: left" | Explanation
|-
| '''honorific_prefix'''
| To appear on the line above the person's name
|-
| '''name'''
| Common name of person (defaults to article name if left blank; provide '''birth_name''' (below) if different from '''name''').
|-
| '''honorific_suffix'''
| To appear on the line below the person's name
|-
| '''image'''
| Image name: abc.jpg, xpz.png, 123.gif, etc. If an image is desired but not available, one may add "yes" to the "needs-photo" section of the [[:Template:WPBiography]] on the talkpage. Do not add [[:File:Replace this image male.svg]], [[:File:Replace this image female.svg]] or other placeholder images; a [[:Wikipedia:Centralized discussion/Image placeholders#Summary|discussion]] for the use such placeholders resulted in no consensus for the mandatory removal of the images on existing pages, however it is suggested that they not be added to new articles.
|-
| '''image_size'''<br /> (''imagesize'')
| Size to display image: ''200px'' (set width), ''x300px'' (set height), or ''200x300px'' (max width & max height). This defaults to ''frameless'' (default is 220px, but logged in users can change this by clicking on "my preferences" and adjusting thumbnail size) if empty or omitted. This parameter should not normally need to be set.
|-
| '''alt'''
| Alt text for image, for visually impaired readers. See [[WP:ALT]].
|-
| '''caption'''
| Caption for image, if needed. Try to include date of photo and the photographer.
|-
| '''birth_name'''
| Name at birth; only use if different from '''name'''.
|-
| '''birth_date'''
| Date of birth: {{tl|birth date and age}} (if living) or {{tl|birth date}} (if dead). See [[Template:Birth date and age/doc]] for details on usage. If only a year of birth is known, or age as of a certain date, consider using {{tl|birth year and age}} or {{tl|birth based on age as of date}}.
|-
| '''birth_place'''
| Place of birth: city, administrative region, sovereign state.
|-
| '''disappeared_date'''
| (For missing people) Date of disappearance: {{tl|disappeared date and age}} (if birth date is known) or {{tl|disappeared date}} (if birth date unknown).
|-
| '''disappeared_place'''
| (For missing people) Place of disappearance: city, administrative region, sovereign state.
|-
| '''disappeared_status'''
| (For missing people) Current status for the person, e.g. if the person is still regarded as missing (using {{tl|missing for}} to calculate the time since disappearance), or if the person has been declared [[dead in absentia]], with a date for such a ruling.
|-
| '''death_date'''
| Date of death: {{tl|death date and age}} (if birth date is known) or {{tl|death date}} (if birth date unknown). See [[Template:Death date/doc]] for details on usage. If exact dates are unknown, consider using {{tl|death year and age}}.
|-
| '''death_place'''
| Place of death: city, administrative region, sovereign state.
|-
| '''death_cause'''
| Cause of death.
|-
| '''body_discovered'''
| Place where the body was discovered (if different from place of death).
|-
| '''resting_place'''
| Place of burial, ash-scattering, etc.
|-
| '''resting_place_coordinates'''
| Coordinates for place of burial, ash-scattering etc. Use {{tl|coord}} template.
|-
| '''monuments'''
| Significant monuments erected or buildings etc. named in honour of the subject. If many, link to an appropriate section of the article instead.
|-
| '''residence'''
| Location(s) where the person notably resides/resided, if different from birth place.
|-
| '''nationality'''
| Nationality. May be used instead of citizenship (below) or vice versa in cases where any confusion could result. Should only be used <em>with</em> citizenship when they somehow differ.
|-
| '''other_names'''
| Other notable names for the person, if different from '''name''' and '''birth_name'''.
|-
| '''ethnicity'''
| Ethnicity.
|-
| '''citizenship'''
| Citizenship. ''See usage notes for nationality, above.''
|-
| '''education'''
| Education.
|-
| '''alma_mater'''
| [[Alma mater]]
|-
| '''occupation'''
| Occupation.
|-
| '''years_active'''
| Date range in years during which the subject was active. Use the format ''1950–2000'', or ''1970–present'' if still active; note the use of an [[WP:ENDASH|en dash]].
|-
| '''employer'''
| Employer, if relevant.
|-
| '''organization'''
| Non-employing organization, if relevant.
|-
| '''agent'''
| The subject's agent, if relevant.
|-
| '''known_for'''</br> (''known'')
| A brief description of why the person is notable.
|-
| '''notable_works'''
| Title(s) of notable work(s) (publications, compositions, sculptures, films, etc.) by the subject, if any.
|-
| '''style'''
| The style in which the subject works,if applicable.
|-
| '''influences'''
| People who were influences of the subject. Clear and notable examples only. Can also be used to indicate groups, schools of thought, etc. (but beware [[WP:NOR|supposition]]).
|-
| '''influenced'''
| People who were influenced by the subject. Clear and notable examples only. Can also be used to indicate groups, schools of thought, etc. (but beware [[WP:PEACOCK|grandiose claims]] and [[WP:NOR|supposition]]).
|-
| '''home_town'''
| The place where the person was raised and matured, if different from birth place and residence.
|-
| '''salary'''
| Annual salary or compensation, if relevant.
|-
| '''net_worth'''
| Current estimated net worth, if relevant.
|-
| '''height'''
| If person was notable for their height, or if height is relevant. Consider using {{tl|convinfobox}}.
|-
| '''weight'''
| If person was notable for their weight, or if weight is relevant. If used, this should also include the date. Consider using {{tl|convinfobox}}.
|-
| '''television'''
| Television programmes presented by or ''closely'' associated with the subject.
|-
| '''title'''
| Multiple uses:
* Formal title, such as ''First Lady of Japan'' for [[Akie Abe]].
* Awarded title, such at ''Mr. Olympia'' for [[Arnold Schwarzenegger]].
* Job title, such as ''President of Calvin College'' for [[Anthony Diekema]].
* A combination of the above, such as ''Professor of Mathematics'' and ''[[Fellow of the Royal Society]]'' for [[Bill Parry (mathematician)|Bill Parry]]
''See also "awards" parameter, below, for awarded honors that are not really titles. A single award should not use both parameters.''
|-
| '''term'''
| Years the person held the '''title''' listed above.
|-
| '''predecessor'''
| Person who previously held the '''title''' listed above.
|-
| '''successor'''
| Person who subsequently held the '''title''' listed above.
|-
| '''party'''
| If relevant. Field labelled '''Political party'''.
|-
| '''movement'''
| If relevant; non party-political.
|-
| '''opponents'''
| Notable relevant opponents (e.g. for major political office).
|-
| '''boards'''
| For [[board of directors]] membership(s), if relevant. Field labeled '''Board member of'''.
|-
| '''religion'''
| If relevant.
|-
| '''denomination'''
| Denomination of religion, if relevant.
|-
| '''criminal_charge'''<br />'''criminal_penalty'''<br />'''criminal_status'''
| For convicted criminals only.
|-
| '''spouse'''
| Name of spouse, followed by years of marriage. Use the format ''Name (1950–present)'' for current spouse and ''Name (1970–1999)'' for former spouse(s); for convenience, consider using {{tl|marriage}}. Separate entries with a line break (<nowiki><br /></nowiki>). For deceased persons still married at time of death, close the date range with death year.
|-
| '''partner'''
| For unmarried [[life partner]]s (of any gender or sexual preference), not business partners. Use the format ''Name (1950–present)'' for current partner and ''Name (1970–1999)'' for former partner(s).
|-
| '''children'''
| Number of children (i.e. 3), or list of names if notable, in which case, separate entries with a line break (<nowiki><br /></nowiki>).
|-
| '''parents'''
| Names of parents, if notable. Separate entries with a line break (<nowiki><br /></nowiki>).
|-
| '''relatives'''<br /> (''relations'')
| Names of siblings or other relatives, if notable. Include the relationship in parentheses after the name (sister, uncle, etc). Separate entries with a line break (<nowiki><br /></nowiki>).
|-
| '''callsign'''
| Amateur radio [[call sign]], if relevant.
|-
| '''awards'''
| Notable awards. If many, link to an appropriate section of the article instead. ''See also "title" parameter, above, for awarded titles. A single award should not use both parameters.''
|-
| '''signature'''
| An image of the person's signature.
|-
| '''signature_alt'''
| Alt text for the signature image. For example, for [[:File:Thomas Jefferson Signature.svg]], the alt text might be <code>|signature_alt="Th: Jefferson"</code>, spelling out the signature exactly as it appears in the image.
|-
| '''signature_size'''
| Default is ''framelsss''. If necessary, a signature can be resized manually as per the "image_size" parameter.
|-
| '''module'''<br />'''module2'''<br />'''module3'''<br />'''module4'''<br />'''module5'''<br />'''module6'''
| Used for embedding other infoboxes into this one.
|-
| '''website'''
| Official website only. Unofficial websites should be placed under <nowiki>==External links==</nowiki> in the body of the article. Use {{tl|URL}} as <nowiki>{{URL|www.example.com}}</nowiki>.
|-
| '''footnotes'''
| Notes about any of the infobox data.
|-
| '''box_width'''
| The infobox width, such as: box_width=220px (default: 22em). A space character between the number and the unit of measurement breaks the parameter. This parameter should not normally need to be set.
|}
== Examples ==
{{Infobox person
| name = Bill Gates
| image = Bill Gates in WEF, 2007.jpg
| caption = Bill Gates at the [[World Economic Forum]] in [[Davos]], 2007
| birth_date = {{birth date and age|1955|10|28}}
| birth_place = [[Seattle, Washington]], USA
| nationality = American
| occupation = Chairman of [[Microsoft]] ''(non-executive)''<br />Co-Chair of [[Bill & Melinda Gates Foundation]]<br />Director of [[Berkshire Hathaway]]<br />CEO of [[Cascade Investment]]
| networth = {{gain}}[[United States dollar|US$]]53 [[1,000,000,000 (number)|billion]] (2010)<ref>[http://billionaires.forbes.com/topic/Bill_Gates Bill Gates topic page.] Forbes.com. Retrieved April 2010.</ref>
| spouse = {{marriage|Melinda Gates|1994}}
| children = 3
| residence = [[Medina, WA]]
| alma_mater = Harvard University (dropped out in 1975)
| website = {{URL|microsoft.com/presspass/exec/billg}}
| signature = BillGates Signature.svg
| parents = [[William H. Gates, Sr.]]<br />[[Mary Maxwell Gates]]
}}
<pre style="overflow: auto">
{{Infobox person
| name = Bill Gates
| image = Bill Gates in WEF, 2007.jpg
| caption = Bill Gates at the [[World Economic Forum]] in [[Davos]], 2007
| birth_date = {{birth date and age|1955|10|28}}
| birth_place = [[Seattle, Washington]], USA
| nationality = American
| occupation = Chairman of [[Microsoft]] ''(non-executive)''<br />Co-Chair of [[Bill & Melinda Gates Foundation]]<br />Director of [[Berkshire Hathaway]]<br />CEO of [[Cascade Investment]]
| networth = {{gain}}[[United States dollar|US$]]53 [[1,000,000,000 (number)|billion]] (2010)<ref>[http://billionaires.forbes.com/topic/Bill_Gates Bill Gates topic page.] Forbes.com. Retrieved April 2010.</ref>
| spouse = {{marriage|Melinda Gates|1994}}
| children = 3
| residence = [[Medina, WA]]
| alma_mater = Harvard University (dropped out in 1975)
| website = {{URL|microsoft.com/presspass/exec/billg}}
| signature = BillGates Signature.svg
| parents = [[William H. Gates, Sr.]]<br />[[Mary Maxwell Gates]]
}}
</pre>
== Microformat ==
{{UF-hcard-person}}
<div style="display: none">{{refs}}</div>
<includeonly>
[[Category:People infobox templates| ]]
[[be-x-old:Шаблён:Асоба]]
[[bg:Шаблон:Биография инфо]]
[[da:Skabelon:Infoboks person]]
[[dsb:Pśedłoga:Infokašćik wósoby]]
[[en:Template:Infobox person]]
[[eo:Ŝablono:Informkesto homoj]]
[[ko:틀:인물 정보]]
[[hsb:Předłoha:Infokašćik wosoby]]
[[id:Templat:Infobox Person]]
[[ka:თარგი:ინფოდაფა პიროვნება]]
[[hu:Sablon:Életrajz infobox]]
[[ja:Template:Infobox 人物]]
[[no:Mal:Infoboks biografi]]
[[ru:Шаблон:Персона]]
[[fi:Malline:Henkilö]]
[[sv:Mall:Infobox biografi]]
[[uk:Шаблон:Особа]]
[[th:แม่แบบ:กล่องข้อมูล ชีวประวัติ]]
</includeonly>
s0w98x9zsq4j0f4wi63up4zuqchsw7q
Peggy Ovire
0
3266
12111
2026-04-23T09:52:25Z
Zahraswaty
193
Created page with "'''Peggy Ovire''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12111
wikitext
text/x-wiki
'''Peggy Ovire''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
rg10j33smqhm8mcx2zs89657wjimeum
Linda Osifo
0
3267
12112
2026-04-23T09:54:53Z
Zahraswaty
193
Created page with "'''Linda Osifo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12112
wikitext
text/x-wiki
'''Linda Osifo''' nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
ljz5m3m2pzrqqlq3nqr0n2jqyl84xm4
Weruche Opia
0
3268
12113
2026-04-23T09:56:37Z
Zahraswaty
193
Created page with "'''Weruche Opia'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya."
12113
wikitext
text/x-wiki
'''Weruche Opia'''nanta bâ tà kàawàa mà fìm mà Nollywood àkata ƴal tà Lanjèeriya.
mhuul2ovddlk0c69ttz4rd9orh69b5u
Tampilet:Infobox actress/styles.css
10
3269
12114
2026-04-23T10:22:49Z
De-Invincible
36
Created page with "/* Template:Infobox person/styles.css */ .custom-infobox { border: 1px solid #aaa; background-color: #E6E6FA; width: 325px; float: right; margin: 0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size: 90%; } .custom-infobox-header { text-align: center; font-size: 130%; font-weight: bold; color: #000; padding: 12px 5px; line-height: 1.2; background-color: #E6E6FA; position: relative; overflo..."
12114
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #E6E6FA;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #E6E6FA;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 90px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
ls5ot6frjs2q90kv44zm78kj0aa1nb4
12115
12114
2026-04-23T10:23:39Z
De-Invincible
36
12115
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #E6E6FA;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 90px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
7duckz61k77v8pnypbdfqfb5op9n4a1
12116
12115
2026-04-23T10:24:20Z
De-Invincible
36
12116
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 90px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
czp1ibzdc6sh3eczib8r36sle5ep2vb
12118
12116
2026-04-23T10:28:22Z
De-Invincible
36
12118
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 110px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
aofb0f0dcr5coluis2ifxntfx3gy209
12120
12118
2026-04-23T10:31:00Z
De-Invincible
36
12120
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.15;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 120px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
r2xiz6fr9w9xrt83od74gr79wdrtm7v
12124
12120
2026-04-23T10:33:44Z
De-Invincible
36
12124
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.3;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 120px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
5kxh9jq69982d0cfue1iu3b7mcch6mk
12125
12124
2026-04-23T10:34:39Z
De-Invincible
36
12125
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.3;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 150px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
9dx7vrdvpmixxwsa62c0jbaptr34duz
12127
12125
2026-04-23T10:38:34Z
De-Invincible
36
12127
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.5;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border-top: 1px solid #E6E6FA;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #E6E6FA;
border: 1px solid #E6E6FA;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 150px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
8bi6212f7z1vdvgvp99qd5u5gupfw65
Tampilet:Infobox football biography/styles.css
10
3270
12130
2026-04-23T10:53:18Z
De-Invincible
36
Created page with "/* Template:Infobox person/styles.css */ .custom-infobox { border: 1px solid #aaa; background-color: #f9f9f9; width: 325px; float: right; margin: 0 0 1em 1em; font-family: Georgia, serif, Roboto, Helvetica; font-size: 90%; } .custom-infobox-header { text-align: center; font-size: 130%; font-weight: bold; color: #000; padding: 12px 5px; line-height: 1.2; background-color: #f9f9f9; position: relative; overflo..."
12130
sanitized-css
text/css
/* Template:Infobox person/styles.css */
.custom-infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
width: 325px;
float: right;
margin: 0 0 1em 1em;
font-family: Georgia, serif, Roboto, Helvetica;
font-size: 90%;
}
.custom-infobox-header {
text-align: center;
font-size: 130%;
font-weight: bold;
color: #000;
padding: 12px 5px;
line-height: 1.2;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}
.custom-infobox-icon {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
opacity: 0.5;
z-index: 1;
}
.custom-infobox-name {
position: relative;
z-index: 2;
}
.custom-infobox-subheader {
text-align: center;
font-weight: bold;
background-color: #DFF2DF;
border-top: 1px solid #DFF2DF;
padding: 3px;
margin-top: 5px;
color: #000;
}
.custom-infobox-section-header {
text-align: center;
font-weight: bold;
background-color: #DFF2DF;
border: 1px solid #DFF2DF;
padding: 3px;
margin: 8px 0 5px 0;
color: #000;
}
.custom-infobox-row {
display: flex;
margin-bottom: 4px;
}
.custom-infobox-label {
flex: 0 0 150px;
font-weight: bold;
}
.custom-infobox-data {
flex: 1;
}
ilc26ronsscq62pe3kzrreh4wewmbf8