Template:Link/render: Difference between revisions

From Heroes of Might and Magic: Olden Era Official Wiki
m 76561198026315966 moved page Template:Link/renderIcon to Template:Link/render without leaving a redirect
No edit summary
 
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<noinclude>
<includeonly><!--
--><span style="{{#ifeq:{{{wrap|}}}| 1| |white-space:nowrap;}}"><!--
    -->{{#if:{{{filename|}}}
        |[[File:{{{filename}}} | {{{size|x32px}}} | link=<!--
            -->{{Link/clean|{{{link|}}}|{{{lang|en}}}}}<!--
        -->]]
    }}<!--
    -->{{#if:{{{text|}}}
        |<span style='margin-left:2px'><!--
        -->{{#if:{{{link|}}}<!--
            This is the link:
            -->|[[<!--
                -->{{Link/clean|{{{link|}}}|{{{lang|en}}}}}<!--
                This is the displayed text of the link:
                -->|{{Color|{{{color|}}}|{{{text}}}}}<!--
                -->]]<!--
            This is the text used when we have no link:
            -->|{{Color|{{{color|}}}|{{{text}}}}}
        }}</span>
    }}<!--
--></span><!--
####################################################################
--></includeonly><noinclude>


This template is used by [[Template:Link]] as the base for rendering a link with an icon in front of it. If '''filename''' is not provided, no icon will be rendered.
This template is used by [[Template:LinkIcon]] as the base for rendering a link with an icon {{b|in front}} of it. The resulting link will {{b|not}} wrap.
===Usage===


<pre><nowiki>{{Link/renderIcon|filename=human_icon.png|article=Temple|lang=en|text=Temple}}</nowiki></pre>
1. Normal:


{{Link/renderIcon|filename=human_icon.png|article=Temple|lang=en|text=Temple}}
{{Color|yellow|Input:}}
<pre><nowiki>
{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
}}</nowiki></pre>


{{Color|lime|Output:}}
{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
}}


<pre><nowiki>{{Link/renderIcon|filename=human_icon.png|article=Temple|lang=pl|text=Świątynia}}</nowiki></pre>
----


{{Link/renderIcon|filename=human_icon.png|article=Temple|lang=pl|text=Świątynia}}
2. With {{b|lang}}, to override the default (<code>en</code>) and thus change the link:


{{Color|yellow|Input:}}
<pre><nowiki>
{{Link/render
| filename=Ister.png
| link=Ister
| text=イスター
| lang=ja
}}</nowiki></pre>


<pre><nowiki>{{Link/renderIcon|article=Temple|lang=en|text=Temple}}</nowiki></pre>
{{Color|lime|Output:}}
{{Link/render
| filename=Ister.png
| link=Ister
| text=イスター
| lang=ja
}}


{{Link/renderIcon|article=Temple|lang=en|text=Temple}}
----


3. With {{b|size}}, to override the default (<code>32px</code>):


<pre><nowiki>{{Link/renderIcon|article=Temple|lang=pl|text=Świątynia}}</nowiki></pre>
{{Color|yellow|Input:}}
<pre><nowiki>
{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| size=128px
}}</nowiki></pre>


{{Link/renderIcon|article=Temple|lang=pl|text=Świątynia}}
{{Color|lime|Output:}}
{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| size=128px
}}


----


</noinclude><includeonly><span style="white-space: nowrap;">{{#if:{{{filename|}}}|[[File:{{{filename}}}{{!}}x30px{{!}}link={{{article}}}{{#ifeq:{{{lang|en}}}|en||/{{{lang}}}}}]]}} [[{{{article}}}{{#ifeq:{{{lang|en}}}|en||/{{{lang}}}}}|{{{text}}}]]</span></includeonly>
4. With {{b|color}}, to override the default:
 
{{Color|yellow|Input:}}
<pre><nowiki>
{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| color=magenta
}}</nowiki></pre>
 
{{Color|lime|Output:}}
{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| color=magenta
}}
 
----
 
5. With {{b|empty filename}}, to hide the icon:
 
{{Color|yellow|Input:}}
<pre><nowiki>
{{Link/render
| link=Ister
| text=Ister
}}</nowiki></pre>
 
{{Color|lime|Output:}}
{{Link/render
| link=Ister
| text=Ister
}}
 
----
 
6. With {{b|empty text}}, to hide the right side:
 
{{Color|yellow|Input:}}
<pre><nowiki>
{{Link/render
| filename=Ister.png
| link=Ister
}}</nowiki></pre>
 
{{Color|lime|Output:}}
{{Link/render
| filename=Ister.png
| link=Ister
}}
 
----
 
7. With {{b|empty link}}, to omit the links:
 
{{Color|yellow|Input:}}
<pre><nowiki>
{{Link/render
| filename=Ister.png
| text=Ister
}}</nowiki></pre>
 
{{Color|lime|Output:}}
{{Link/render
| filename=Ister.png
| text=Ister
}}
 
----
 
8. With {{b|1=wrap=1}}, to allow the resulting link to wrap:
 
{{Color|yellow|Input:}}
<pre><nowiki>
{|class=wikitable
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, can wrap
| wrap=1
}}
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, no wrapping
}}
|}</nowiki></pre>
 
{{Color|lime|Output:}}
{|class=wikitable
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, can wrap
| wrap=1
}}
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, no wrapping
}}
|}
 
</noinclude>

Latest revision as of 08:50, 7 August 2026


This template is used by Template:LinkIcon as the base for rendering a link with an icon in front of it. The resulting link will not wrap.

Usage

1. Normal:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
}}

Output: Ister


2. With lang, to override the default (en) and thus change the link:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=イスター
| lang=ja
}}

Output: イスター


3. With size, to override the default (32px):

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| size=128px
}}

Output: Ister


4. With color, to override the default:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| color=magenta
}}

Output: Ister


5. With empty filename, to hide the icon:

Input:

{{Link/render
| link=Ister
| text=Ister
}}

Output: Ister


6. With empty text, to hide the right side:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
}}

Output:


7. With empty link, to omit the links:

Input:

{{Link/render
| filename=Ister.png
| text=Ister
}}

Output: Ister


8. With wrap=1, to allow the resulting link to wrap:

Input:

{|class=wikitable
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, can wrap
| wrap=1
}}
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, no wrapping
}}
|}

Output:

Line much longer than 100 pixels, can wrap Line much longer than 100 pixels, no wrapping