Template:NB: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{#switch: {{{1}}} | {{#switch: {{{1}}} | ||
| | | mind = {{{!}} style="border: 0px solid #2FB5AB; padding: 5px; background: #F3FCFB" | ||
{{!}} '''<span style="color: #2FB5AB;">{{{3| | {{!}} '''<span style="color: #2FB5AB;">{{{3|Mind:}}}</span>''' {{{2}}} | ||
{{!}}} | {{!}}} | ||
| deprecated = {{{!}} style="border: 0px solid #808080; padding: 5px; background: #F7F7F7" | | deprecated = {{{!}} style="border: 0px solid #808080; padding: 5px; background: #F7F7F7" | ||
{{!}} '''<span style="color: #808080;">{{{3|Deprecated:}}}</span>''' {{{2}}} | {{!}} '''<span style="color: #808080;">{{{3|Deprecated:}}}</span>''' {{{2}}} | ||
{{!}}} | {{!}}} | ||
| | | tip = {{{!}} style="border: 0px solid #2C68FC; padding: 5px; background: #F0F4FF" | ||
{{!}} '''<span style="color: #2C68FC;">{{{3| | {{!}} '''<span style="color: #2C68FC;">{{{3|Tip:}}}</span>''' {{{2}}} | ||
{{!}}} | {{!}}} | ||
| warning = {{{!}} style="border: 0px solid #A82C35; padding: 5px; background: #FCF3F4" | | warning = {{{!}} style="border: 0px solid #A82C35; padding: 5px; background: #FCF3F4" | ||
Line 36: | Line 36: | ||
{{BOX|deprecated|This feature is deprecated and will be removed in the next release}} | {{BOX|deprecated|This feature is deprecated and will be removed in the next release}} | ||
{{BOX| | {{BOX|mind|You can manually set this via '''SOME_TAG'''}} | ||
{{BOX|warning|Never do this at home!}} | {{BOX|warning|Never do this at home!}} | ||
Line 50: | Line 50: | ||
{{BOX|deprecated|This feature is deprecated and will be removed in the next release}} | {{BOX|deprecated|This feature is deprecated and will be removed in the next release}} | ||
{{BOX| | {{BOX|mind|You can manually set this via '''SOME_TAG'''}} | ||
{{BOX|warning|Never do this at home!}} | {{BOX|warning|Never do this at home!}} |
Revision as of 07:38, 12 October 2021
{{{2}}} |
Purpose
This template draws various colored boxes which can be filled with user content.
Parameters
{{BOX|<style>|<message>|<<firstword>>}}
style
: One oftip,deprecated,note,warning,important
, selects the box style, i.e. the color and the first word (see examples below). Ifstyle
is not any of the words in the list, a black box without first word is drawn.message
: The content of the box (after the first word).firstword
: (optional) Overrides the default first word for any of the predefined styles.
Examples
{{BOX|tip|This is the clever way of doing it!}} {{BOX|deprecated|This feature is deprecated and will be removed in the next release}} {{BOX|mind|You can manually set this via '''SOME_TAG'''}} {{BOX|warning|Never do this at home!}} {{BOX|important|You should really consider this!}} {{BOX|none|Just a box.}} {{BOX|warning|Really, really don't do this!|CAUTION!!!}}
will produce
Tip: This is the clever way of doing it! |
Deprecated: This feature is deprecated and will be removed in the next release |
Mind: You can manually set this via SOME_TAG |
Warning: Never do this at home! |
Important: You should really consider this! |
Just a box. |
CAUTION!!! Really, really don't do this! |