|
|
| (2 intermediate revisions by the same user not shown) |
| Line 7: |
Line 7: |
| {{Verification|Unverified}} | | {{Verification|Unverified}} |
|
| |
|
| Works in BOTH places:
| | Note: |
| - On the page: shows a banner
| | This template always outputs BOTH: |
| - Inside the infobox: shows a compact inline label (CSS controls which one is visible) | | - an inline label (for infobox) |
| </noinclude><includeonly>
| | - a banner (for the page body) |
| {{#switch: {{{mode|both}}}
| |
| | inline =
| |
| <span class="ic-verify-inline" data-status="{{{status|{{{1|Unverified}}}}}}">
| |
| {{{status|{{{1|Unverified}}}}}}
| |
| </span>
| |
|
| |
|
| | banner =
| | CSS decides which one is visible where. |
| <div class="ic-verify-banner" data-status="{{{status|{{{1|Unverified}}}}}}">
| | </noinclude> |
| <strong>Verification status:</strong> {{{status|{{{1|Unverified}}}}}}
| | <includeonly> |
| </div>
| | <span class="ic-verify-inline" data-status="{{{status|{{{1|Unverified}}}}}}"> |
| | | {{{status|{{{1|Unverified}}}}}} |
| | both =
| | </span> |
| <div class="ic-verify-banner" data-status="{{{status|{{{1|Unverified}}}}}}">
| | <div class="ic-verify-banner" data-status="{{{status|{{{1|Unverified}}}}}}"> |
| <strong>Verification status:</strong> {{{status|{{{1|Unverified}}}}}}
| | <strong>Verification status:</strong> {{{status|{{{1|Unverified}}}}}} |
| </div>
| | </div> |
| <span class="ic-verify-inline" data-status="{{{status|{{{1|Unverified}}}}}}">
| |
| {{{status|{{{1|Unverified}}}}}}
| |
| </span>
| |
| | |
| | #default =
| |
| <div class="ic-verify-banner" data-status="{{{status|{{{1|Unverified}}}}}}">
| |
| <strong>Verification status:</strong> {{{status|{{{1|Unverified}}}}}}
| |
| </div>
| |
| <span class="ic-verify-inline" data-status="{{{status|{{{1|Unverified}}}}}}">
| |
| {{{status|{{{1|Unverified}}}}}}
| |
| </span>
| |
| }}
| |
| </includeonly> | | </includeonly> |