Template:LinkIcon: Difference between revisions
No edit summary |
No edit summary |
||
| Line 35: | Line 35: | ||
<!-- normal, no link specified: --> | <!-- normal, no link specified: --> | ||
|#default={{#if:{{{link_id|}}} | |#default={{#if:{{{link_id|}}} | ||
|CONCAT("{{#invoke:Translation|get|{{{link_id}}} | |CONCAT("{{#invoke:Translation|get|{{{link_id}}}|en}}") | ||
|E.name <!-- normal, use the English name --> | |E.name <!-- normal, use the English name --> | ||
}} | }} | ||
Latest revision as of 11:40, 26 August 2026
This template is meant to handle the linking of articles in a way that is language-agnostic, meaning that it can be used in language-aware infoboxes and other contexts which need to be able to handle multiple languages. This template only works with concepts which have their translation managed by Cargo.
The default assumption for the icon's file name is that it is identical to the id, plus the .png extension. This can be further configured with the suffix parameter, or be completely overridden by the filename parameter.
1. Basic:
(rarely used, as you usually need to specify type and suffix)
Input: {{LinkIcon | id=magic_demon}}
Output:
Herald
2. With type:
Input: {{LinkIcon | id=skill_assault | type=skill}}
Output:
Offense
3. With suffix:
(to override the default .png)
Input: {{LinkIcon | id=angel | suffix=_icon.png}}
Output:
Angel
4. With lang:
(to override the default en)
Input: {{LinkIcon | id=magic_demon || lang=ja}}
Output:
ヘラルド
5. With size:
(to override the default 32px)
Input: {{LinkIcon | id=magic_demon | size=64px}}
Output:
Herald
6. With filename:
(to override the automated file path)
Input: {{LinkIcon | id=human_hero_1 | type=hero | filename=Ister.png}}
Output:
Ister
7. With zero filename:
(to disable the icon)
Input: {{LinkIcon | id=magic_demon | filename=0}}
Output: Herald
8. With text:
(to override the automated text)
Input: {{LinkIcon | id=magic_demon | text=Hello}}
Output:
Hello
9. With zero text:
(to disable the text)
Input: {{LinkIcon | id=magic_demon | text=0}}
10. With link:
(to override the automated link)
Input: {{LinkIcon | id=magic_demon | link=Foobar}}
Output:
Herald
11. With zero link:
(to disable the link)
Input: {{LinkIcon | id=magic_demon | link=0}}
Output:
Herald
12. With color:
Input: {{LinkIcon | id=magic_demon | color=magenta}}
Output:
Herald
13. With stack=1:
(to switch to a vertical layout)
Input: {{LinkIcon | id=magic_demon | stack=1}}
Output:
Herald
14. With wrap=1:
(to allow the resulting link to wrap; useful if used without icons)
Input:
{|class=wikitable
|style="width:100px;"|{{LinkIcon|id=might_undead|suffix=_icon.png|wrap=1}}
|}
Output:
15. With filename=1:
(to use the English name as filename)
Input: {{LinkIcon | id=human_hero_1 | type=hero | filename=1}}
Output:
Ister
16. Stinger conflict:
Input:
{{LinkIcon
| id = wasp_upg_alt
| type = unit
| filename = 1
| suffix = _icon.png
}}
{{LinkIcon
| id = dungeon_hero_3
| type = hero
| filename = 1
}}
17. Summon Avatar conflict:
Input:
{{LinkIcon
| id = bonus_magic_astral_summon_1
| type = spell
}}
{{LinkIcon
| id = skill_summoner
| type = skill
}}
Output:
Basic Summon Avatar
Summon Avatar
18. Proper linking of Skill levels:
Input:
{{LinkIcon
| id = skill_assault
| type = skill_level
| variant = 3
}}
Output:
Expert Offense
19. With link_id to hijack the url:
Input:
{{LinkIcon
| id = sub_class_demons_magic_2
| suffix=_icon.png
| link_id = magic_demon
}}
Output:
Lord of Chaos


