Difference between revisions of "Template: Warning"

From Elder Tale Online MUSH
Jump to: navigation, search
m
m
Line 1: Line 1:
<onlyinclude>{{#switch:
+
<noinclude>
| =
+
Use:
{{#if: {{{msg|{{{1|}}}}}}|<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #b32424 solid;padding:0.5em;background-color: #fee7e6"><tr><td nowrap="nowrap" valign="top">}}<span style="position: relative; top: -2px;">[[File:Quest-NPC 1 Quest-Acceptale.png|50px|Warning|link=]]</span> '''Warning:''' {{#if: {{{msg|{{{1|}}}}}}|</td><td valign="top" style="padding-{{dir|{{pagelang}}|right|left}}:0.5em;">{{{msg|{{{1|}}}}}}</td></tr></table>}}
+
<nowiki>{{ Warning</nowiki>
| #default=
+
| Type=primary|danger|warning|info
  {{#invoke:Template translation|renderTranslatedTemplate|template=Template:Warning|noshift=1}}
+
| Msg=Your message here
}}</onlyinclude>
+
}}
{{
 
== Usage ==
 
  
This template has two possible usages:
+
== Primary Example ==
 +
<nowiki>{{Warning | Type=primary | Msg=Primary Message}}</nowiki>
 +
<div class="alert alert-primary" role="alert">Primary Message</div>
  
# Will have the text flow below when the warning text is too long
+
== Danger Example ==
# Uses a table to indent the text.
+
<nowiki>{{Warning | Type=danger| Msg=Dangerous Message}}</nowiki>
 +
<div class="alert alert-danger" role="alert">Dangerous Message</div>
  
=== Method 1 ===
+
== Warning Example ==
 +
<nowiki>{{Warning | Type=warning| Msg=Warning Message}}</nowiki>
 +
<div class="alert alert-warning" role="alert">Warning Message</div>
  
The following displays the warning icon and the word "Warning:".
+
== Info Example ==
You can follow this with whatever text/images/markup you like.
+
  <nowiki>{{Warning | Type=info| Msg=Info Message}}</nowiki>
 
+
<div class="alert alert-info" role="alert">Info Message</div>
Wiki Code:
+
</noinclude>
 
+
<includeonly>
  <nowiki>{{warning}}</nowiki> Don't do that!
+
<div class="alert alert-{{#switch: primary|danger|warning|info={{{Type|primary}}}|#default=primary}}" role="alert">{{{Msg}}}</div>
 
+
</includeonly>
{{warning}} Don't do that!
 
 
 
=== Method 2 ===
 
 
 
The following includes the text passed to the template, and uses a table to stop the text flowing round the icon.
 
 
 
Wiki Code:
 
 
 
<nowiki>{{warning|1=</nowiki>Here is a long warning, which is sufficiently wordy to run onto a second line (unless you have a really large screen!), which would normally cause it to wrap round the icon, but because we passed it as a parameter it keeps its left alignment straight.<nowiki>}}</nowiki>  
 
 
 
{{warning|1=Here is a long warning, which is sufficiently wordy to run onto a second line (unless you have a really large screen!), which would normally cause it to wrap round the icon, but because we passed it as a parameter it keeps its left alignment straight.
 
}}
 

Revision as of 10:11, 19 January 2019

Use:

{{ Warning
| Type=primary|danger|warning|info
| Msg=Your message here
}}

Primary Example

{{Warning | Type=primary | Msg=Primary Message}}

Danger Example

{{Warning | Type=danger| Msg=Dangerous Message}}

Warning Example

{{Warning | Type=warning| Msg=Warning Message}}

Info Example

{{Warning | Type=info| Msg=Info Message}}