Actions

Template

Difference between revisions of "Warning"

m (Info Example: Categorizing templates to organize)
 
Line 22: Line 22:
 
{{Bootstrap}}
 
{{Bootstrap}}
 
<div class="alert-{{#switch:{{{Type|primary}}}|primary|danger|warning|info={{{Type|primary}}}|#default=primary}}" role="alert">{{#switch:{{{Type|primary}}}|primary=|danger=<i class="fas fa-exclamation"></i>|warning=<i class="fas fa-exclamation-triangle"></i>|info=<i class="fas fa-exclamation-circle"></i>|#default=}} {{{Msg}}}</div></includeonly>
 
<div class="alert-{{#switch:{{{Type|primary}}}|primary|danger|warning|info={{{Type|primary}}}|#default=primary}}" role="alert">{{#switch:{{{Type|primary}}}|primary=|danger=<i class="fas fa-exclamation"></i>|warning=<i class="fas fa-exclamation-triangle"></i>|info=<i class="fas fa-exclamation-circle"></i>|#default=}} {{{Msg}}}</div></includeonly>
 +
 +
<noinclude>[[Category:Utility Templates|{{PAGENAME}}]]</noinclude>

Latest revision as of 02:01, 16 August 2022

Use:

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

Primary Example

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

Danger Example

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

Warning Example

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

Info Example

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