hugo-theme-relearn/exampleSite/content/shortcodes/notice.en.md

301 lines
7.3 KiB
Markdown
Raw Normal View History

+++
description = "Disclaimers to help you structure your page"
title = "Notice"
+++
2017-08-20 15:10:29 +00:00
2022-05-25 21:39:19 +00:00
The `notice` shortcode shows various types of disclaimers with adjustable color, title and icon to help you structure your page.
2022-05-23 22:37:03 +00:00
{{% notice style="primary" title="There may be pirates" icon="skull-crossbones" %}}
It is all about the boxes.
{{% /notice %}}
2017-08-20 15:10:29 +00:00
2021-07-16 20:04:22 +00:00
## Usage
2017-08-20 15:10:29 +00:00
2022-10-31 11:10:36 +00:00
While the examples are using shortcodes with named parameter you are free to use positional as well or also call this shortcode from your own partials.
2022-05-23 22:37:03 +00:00
{{< tabs groupid="shortcode-parameter">}}
{{% tab title="shortcode" %}}
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="primary" title="There may be pirates" icon="skull-crossbones" */%}}
It is all about the boxes.
{{%/* /notice */%}}
````
{{% /tab %}}
{{% tab title="shortcode (positional)" %}}
2022-05-23 22:37:03 +00:00
````go
2022-05-23 22:37:03 +00:00
{{%/* notice primary "There may be pirates" "skull-crossbones" */%}}
It is all about the boxes.
2017-08-20 15:10:29 +00:00
{{%/* /notice */%}}
2021-07-16 20:04:22 +00:00
````
2017-08-20 15:10:29 +00:00
{{% /tab %}}
{{% tab title="partial" %}}
````go
{{ partial "shortcodes/notice.html" (dict
"page" .
"style" "primary"
"title" "There may be pirates"
"icon" "skull-crossbones"
"content" "It is all about the boxes."
)}}
````
2022-05-23 22:37:03 +00:00
{{% /tab %}}
{{< /tabs >}}
2022-05-23 22:37:03 +00:00
### Parameter
| Name | Position | Default | Notes |
|-----------|----------|-----------|-------------|
| **style** | 1 | `default` | The style scheme used for the box.<br><br>- by severity: `info`, `note`, `tip`, `warning`<br>- by brand color: `primary`, `secondary`, `accent`<br>- by color: `blue`, `green`, `grey`, `orange`, `red`<br>- by special color: `default`, `transparent`, `code` |
2023-01-23 21:35:43 +00:00
| **color** | | see notes | The [CSS color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value) to be used. If not set, the chosen color depends on the **style**. Any given value will overwrite the default.<br><br>- for severity styles: a nice matching color for the severity<br>- for all other styles: the corresponding color |
| **title** | 2 | see notes | Arbitrary text for the box title. Depending on the **style** there may be a default title. Any given value will overwrite the default.<br><br>- for severity styles: the matching title for the severity<br>- for all other styles: _&lt;empty&gt;_<br><br>If you want no title for a severity style, you have to set this parameter to `" "` (a non empty string filled with spaces) |
2023-10-24 20:49:34 +00:00
| **icon** | 3 | see notes | [Font Awesome icon name](shortcodes/icon#finding-an-icon) set to the left of the title. Depending on the **style** there may be a default icon. Any given value will overwrite the default.<br><br>- for severity styles: a nice matching icon for the severity<br>- for all other styles: _&lt;empty&gt;_<br><br>If you want no icon for a severity style, you have to set this parameter to `" "` (a non empty string filled with spaces) |
2022-10-31 11:10:36 +00:00
| _**&lt;content&gt;**_ | | _&lt;empty&gt;_ | Arbitrary text to be displayed in box. |
2021-07-16 20:04:22 +00:00
## Examples
2022-05-23 22:37:03 +00:00
### By Severity
2017-08-20 15:10:29 +00:00
2022-05-23 22:37:03 +00:00
#### Info with markup
````go
{{%/* notice style="info" */%}}
2022-05-23 22:37:03 +00:00
An **information** disclaimer
2021-07-16 20:04:22 +00:00
You can add standard markdown syntax:
2021-07-16 20:04:22 +00:00
- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** and even ***bold emphasized*** text
2021-07-16 20:04:22 +00:00
- [links](https://example.com)
- etc.
```plaintext
2021-07-16 20:04:22 +00:00
...and even source code
```
2022-10-31 11:10:36 +00:00
> the possibilities are endless (almost - including other shortcodes may or may not work)
{{%/* /notice */%}}
````
2022-05-23 22:37:03 +00:00
{{% notice style="info" %}}
2022-05-23 22:37:03 +00:00
An **information** disclaimer
2021-07-16 20:04:22 +00:00
You can add standard markdown syntax:
2021-07-16 20:04:22 +00:00
- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** and even **_bold emphasized_** text
2021-07-16 20:04:22 +00:00
- [links](https://example.com)
- etc.
2017-08-20 15:10:29 +00:00
```plaintext
2021-07-16 20:04:22 +00:00
...and even source code
2017-08-20 15:10:29 +00:00
```
2022-10-31 11:10:36 +00:00
> the possibilities are endless (almost - including other shortcodes may or may not work)
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2021-07-16 20:04:22 +00:00
#### Note
2021-07-16 20:04:22 +00:00
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="note" */%}}
A **notice** disclaimer
{{%/* /notice */%}}
````
2021-07-16 20:04:22 +00:00
{{% notice style="note" %}}
A **notice** disclaimer
2017-08-20 15:10:29 +00:00
{{% /notice %}}
#### Tip
2022-05-23 22:37:03 +00:00
````go
2022-05-23 22:37:03 +00:00
{{%/* notice style="tip" */%}}
A **tip** disclaimer
2024-02-27 16:24:16 +00:00
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
````
2021-07-16 20:04:22 +00:00
{{% notice style="tip" %}}
A **tip** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2017-08-20 15:10:29 +00:00
#### Warning
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="warning" */%}}
A **warning** disclaimer
2021-07-16 20:04:22 +00:00
{{%/* /notice */%}}
````
2022-05-23 22:37:03 +00:00
{{% notice style="warning" %}}
2022-05-23 22:37:03 +00:00
A **warning** disclaimer
{{% /notice %}}
2021-07-16 20:04:22 +00:00
#### Warning with Non-Default Title and Icon
2021-07-16 20:04:22 +00:00
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="warning" title="Here are dragons" icon="dragon" */%}}
A **warning** disclaimer
{{%/* /notice */%}}
````
2021-07-16 20:04:22 +00:00
{{% notice style="warning" title="Here are dragons" icon="dragon" %}}
2022-05-23 22:37:03 +00:00
A **warning** disclaimer
2017-08-20 15:10:29 +00:00
{{% /notice %}}
#### Warning without a Title and Icon
2022-05-23 22:37:03 +00:00
````go
2022-05-23 22:37:03 +00:00
{{%/* notice style="warning" title=" " icon=" " */%}}
A **warning** disclaimer
{{%/* /notice */%}}
````
2021-07-16 20:04:22 +00:00
{{% notice style="warning" title=" " icon=" " %}}
A **warning** disclaimer
{{% /notice %}}
2021-07-16 20:04:22 +00:00
2022-05-23 22:37:03 +00:00
### By Brand Colors
2017-08-20 15:10:29 +00:00
#### Primary with Title only
2017-08-20 15:10:29 +00:00
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="primary" title="Primary" */%}}
A **primary** disclaimer
2021-07-16 20:04:22 +00:00
{{%/* /notice */%}}
````
2022-05-23 22:37:03 +00:00
{{% notice style="primary" title="Primary" %}}
A **primary** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2021-07-16 20:04:22 +00:00
#### Secondary with Icon only
2021-07-16 20:04:22 +00:00
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="secondary" icon="stopwatch" */%}}
A **secondary** disclaimer
{{%/* /notice */%}}
````
2021-07-16 20:04:22 +00:00
{{% notice style="secondary" icon="stopwatch" %}}
A **secondary** disclaimer
{{% /notice %}}
2021-07-16 20:04:22 +00:00
#### Accent
````go
{{%/* notice style="accent" */%}}
An **accent** disclaimer
{{%/* /notice */%}}
````
{{% notice style="accent" %}}
An **accent** disclaimer
{{% /notice %}}
2022-05-23 22:37:03 +00:00
### By Color
#### Blue without a Title and Icon
2022-05-23 22:37:03 +00:00
````go
2022-05-23 22:37:03 +00:00
{{%/* notice style="blue" */%}}
A **blue** disclaimer
{{%/* /notice */%}}
````
2021-07-16 20:04:22 +00:00
{{% notice style="blue" %}}
A **blue** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2021-07-16 20:04:22 +00:00
#### Green with Title only
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="green" title="Green" */%}}
A **green** disclaimer
2021-07-16 20:04:22 +00:00
{{%/* /notice */%}}
````
2022-05-23 22:37:03 +00:00
{{% notice style="green" title="Green" %}}
A **green** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
#### Grey with Icon only
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="grey" icon="bug" */%}}
A **grey** disclaimer
{{%/* /notice */%}}
````
{{% notice style="grey" icon="bug" %}}
A **grey** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
#### Orange with Title and Icon
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="orange" title="Orange" icon="bug" */%}}
A **orange** disclaimer
{{%/* /notice */%}}
````
{{% notice style="orange" title="Orange" icon="bug" %}}
A **orange** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2023-01-14 00:39:28 +00:00
#### Red without a Title and Icon
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="red" */%}}
A **red** disclaimer
{{%/* /notice */%}}
````
{{% notice style="red" %}}
A **red** disclaimer
{{% /notice %}}
2022-05-23 22:37:03 +00:00
### By Special Color
2023-01-23 21:35:43 +00:00
#### Default with Positional Parameter
````go
2023-01-23 21:35:43 +00:00
{{%/* notice default "Pay Attention to this Note!" "skull-crossbones" */%}}
2022-05-23 22:37:03 +00:00
Some serious information.
{{%/* /notice */%}}
````
2022-05-23 22:37:03 +00:00
{{% notice default "Pay Attention to this Note!" "skull-crossbones" %}}
2022-05-23 22:37:03 +00:00
Some serious information.
{{% /notice %}}
#### Transparent with Title and Icon
2022-05-23 22:37:03 +00:00
````go
2023-01-23 21:35:43 +00:00
{{%/* notice style="transparent" title="Pay Attention to this Note!" icon="skull-crossbones" */%}}
2022-05-23 22:37:03 +00:00
Some serious information.
{{%/* /notice */%}}
````
{{% notice style="transparent" title="Pay Attention to this Note!" icon="skull-crossbones" %}}
Some serious information.
{{% /notice %}}
2023-01-23 21:35:43 +00:00
### With User-Defined Color, Font Awesome Brand Icon and Markdown Title
2023-01-23 21:35:43 +00:00
````go
2024-04-04 18:02:54 +00:00
{{%/* notice color="fuchsia" title="**Hugo**" icon="fa-fw fab fa-hackerrank" */%}}
2023-01-23 21:35:43 +00:00
Victor? Is it you?
{{%/* /notice */%}}
````
2024-04-04 18:02:54 +00:00
{{% notice color="fuchsia" title="**Hugo**" icon="fa-fw fab fa-hackerrank" %}}
2023-01-23 21:35:43 +00:00
Victor? Is it you?
{{% /notice %}}