Notice
Fello' pirrates, be awarrre some stuff may not work fer us in this trrranslat'n. Like table of rrramblings, see'ng Merrrmaids, do'ng math or chemistrrry and stuff.
Th' notice
shorrrtcode shows various types o' disclaimers wit' adjust'ble color, title an' ay'con t' help ye structure yer plank.
It be all about th' boxes.
Usage
While th' examples be us'n shorrrtcodes wit' named parameter ye be free t' use positional as well or also call this shorrrtcode from yer own partials.
{{% notice style="primary" title="There may be pirates" ay'con="skull-crossbones" %}}
It be all about th' boxes.
{{% /notice %}}
{{% notice primary "There may be pirates" "skull-crossbones" %}}
It be all about th' boxes.
{{% /notice %}}
{{ partial "shortcodes/notice.html" (dict
"context" .
"style" "primary"
"title" "There may be pirates"
"icon" "skull-crossbones"
"content" "It be all about th' boxes."
)}}
Parameter
Name | Posit'n | Default | Notes |
---|---|---|---|
style | 1 | default |
Th' color scheme used t' highlight th' box rrrambl'n. - by severity: info , note , tip , warning - by brand color: primary , secondary - by color: blue , green , grey , orange , red - by special color: default , transparent |
title | 2 | see notes | Arbitrary text fer th' box title. Depend'n on th' style there may be a default title. Any given value will overwrite th' default. - fer severity styles: th' match'n title fer th' severity - fer all other colors: <empty> If ye want no title fer a severity style, ye have t' set this parameter t' " " (a non empty str'n filled wit' spaces) |
ay'con | 3 | see notes | Font Awesome ay'con name set t' th' left o' th' title. Depend'n on th' style there may be a default ay'con. Any given value will overwrite th' default. - fer severity styles: a nice match'n ay'con fer th' severity - fer all other colors: <empty> If ye want no ay'con fer a severity style, ye have t' set this parameter t' " " (a non empty str'n filled wit' spaces) |
<content> | <empty> | Arbitrary text t' be displayed 'n box. |
Examples
By Severity
Ahoi wit' marrrkup
{{% notice style="info" %}}
An **informat'n** disclaimer
Ye can add standard markdown rules:
- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** an' even ***bold emphasized*** text
- [links](https://example.com)
- etc.
```plaintext
...and even source code
```
> th' possibilities be endless (almost - includ'n other shorrrtcodes may or may not work)
{{% /notice %}}
An informat'n disclaimer
Ye can add standard markdown rules:
- multiple paragraphs
- bullet point lists
- emphasized, bold an' even bold emphasized text
- links
- etc.
...and even source code
th' possibilities be endless (almost - includ'n other shorrrtcodes may or may not work)
Avast
{{% notice style="note" %}}
A **notice** disclaimer
{{% /notice %}}
A notice disclaimer
Smarrrt Arrrse
{{% notice style="tip" %}}
A **tip** disclaimer
A tip disclaimer
Arrr
{{% notice style="warning" %}}
A **warning** disclaimer
{{% /notice %}}
A warning disclaimer
Arrr wit' Non-Default Title an' Ay'con
{{% notice style="warning" title="Here be dragons" ay'con="dragon" %}}
A **warning** disclaimer
{{% /notice %}}
A warning disclaimer
Arrr without a Title an' Ay'con
{{% notice style="warning" title=" " ay'con=" " %}}
A **warning** disclaimer
{{% /notice %}}
A warning disclaimer
By Brand Colors
Primary wit' Title only
{{% notice style="primary" title="Primary" %}}
A **primary** disclaimer
{{% /notice %}}
A primary disclaimer
Secondary wit' Ay'con only
{{% notice style="secondary" ay'con="stopwatch" %}}
A **secondary** disclaimer
{{% /notice %}}
A secondary disclaimer
By Color
Blue without a Title an' Ay'con
{{% notice style="blue" %}}
A **blue** disclaimer
{{% /notice %}}
A blue disclaimer
Green wit' Title only
{{% notice style="green" title="Green" %}}
A **green** disclaimer
{{% /notice %}}
A green disclaimer
Grey wit' Ay'con only
{{% notice style="grey" ay'con="bug" %}}
A **grey** disclaimer
{{% /notice %}}
A grey disclaimer
Orange wit' Title an' Ay'con
{{% notice style="orange" title="Orange" ay'con="bug" %}}
A **orange** disclaimer
{{% /notice %}}
A orange disclaimer
Red
{{% notice style="red" %}}
A **red** disclaimer
{{% /notice %}}
A red disclaimer
By Special Color
Default wit' Title an' Ay'con
{{% notice style="default" title"Pay Attent'n t' this Avast!" ay'con="skull-crossbones" %}}
Some serious informat'n.
{{% /notice %}}
Some serious informat'n.
Transparent wit' Title an' Ay'con
{{% notice style="transparent" title"Pay Attent'n t' this Avast!" ay'con="skull-crossbones" %}}
Some serious informat'n.
{{% /notice %}}
Some serious informat'n.