Module:Affiliation/data: Difference between revisions

From ESU Wiki
Created page with "local affiliationData = { KAYLABS = '25px Kayne Labs', ETHEREALS= '25px The Ethereals', TEAMBOLT = '25px Team Bolt', }"
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
local affiliationData = {
local affiliationData = {
KAYLABS = '[[File:KAYLABS.svg|25px]] [[Kayne Labs]]',
KAYLABS = '[[File:KAYLABS.svg|25px|link=Kayne Labs]] [[Kayne Labs]]',
ETHEREALS= '[[File:ETHEREALS.svg|25px]] [[The Ethereals]]',
ETHEREALS= '[[File:ETHEREALS.svg|25px|link=The Ethereals]] [[The Ethereals]]',
TEAMBOLT = '[[File:PB.svg|25px]] [[Team Bolt]]',
TEAMBOLT = '[[File:PB.svg|25px|link=Team Bolt]] [[Team Bolt]]',
}
}
return affiliationData

Latest revision as of 09:00, 5 November 2024

Description[edit source]

This creates an affiliation template to make it easier for people to put in Affiliation info into Infoboxes.

Syntax[edit source]

{{Affiliation}}

Example[edit source]

{{Affiliation|ETHEREALS}} will create The Ethereals .


local affiliationData = {
	KAYLABS = '[[File:KAYLABS.svg|25px|link=Kayne Labs]] [[Kayne Labs]]',
	ETHEREALS= '[[File:ETHEREALS.svg|25px|link=The Ethereals]] [[The Ethereals]]',
	TEAMBOLT = '[[File:PB.svg|25px|link=Team Bolt]] [[Team Bolt]]',
}

return affiliationData