2021-08-25 11:33:29 +00:00
+++
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
2024-08-13 11:33:49 +00:00
While the examples are using shortcodes with named parameter you are free to use positional as well, use it as [GitHub styled alerts ](/cont/markdown#alerts ) or also call this shortcode from your own partials.
Note that if you want to use GitHub styled alerts Markdown, this is only available starting with Hugo {{% badge color="fuchsia" icon="fa-fw fab fa-hackerrank" title=" " %}}0.132.0{{% /badge %}}. In this case no parameter from the below table are available.
2022-05-23 22:37:03 +00:00
2023-07-27 15:02:13 +00:00
{{< tabs groupid = "shortcode-parameter" > }}
2024-08-13 11:33:49 +00:00
{{% tab title="markdown" %}}
````md
> [!NOTE]
> It is all about the boxes.
````
{{% /tab %}}
2023-06-05 21:20:37 +00:00
{{% 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 %}}
2023-06-05 21:20:37 +00:00
{{% tab title="shortcode (positional)" %}}
2022-05-23 22:37:03 +00:00
2021-08-23 21:32:34 +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
2022-06-22 22:03:24 +00:00
{{% /tab %}}
2023-06-05 21:20:37 +00:00
{{% tab title="partial" %}}
2022-06-22 22:03:24 +00:00
````go
{{ partial "shortcodes/notice.html" (dict
2023-07-27 14:14:55 +00:00
"page" .
2022-06-22 22:03:24 +00:00
"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 > }}
2021-10-22 02:20:30 +00:00
2022-05-23 22:37:03 +00:00
### Parameter
2024-09-01 11:56:39 +00:00
| Name | Position | Default | Notes |
|-----------------------|----------|-----------------|-------------|
| **style** | 1 | `default` | The style scheme used for the box.< br >< br > - by severity: `caution` , `important` , `info` , `note` , `tip` , `warning` < br > - by brand color: `primary` , `secondary` , `accent` < br > - by color: `blue` , `cyan` , `green` , `grey` , `magenta` , `orange` , `red` < br > - by special color: `default` , `transparent` , `code` |
| **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: _<empty>_ < 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) |
| **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: _<empty>_ < 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) |
| **expanded** | | _<empty>_ | Whether to draw an expander and how the content is displayed.< br >< br > - _<empty>_ : the content is shown but not collapsible< br > - `true` : the expander is drawn and the content is initially shown< br > - `false` : the expander is drawn and the content is initially hidden |
2022-10-31 11:10:36 +00:00
| _**<content>**_ | | _<empty>_ | Arbitrary text to be displayed in box. |
2021-10-22 02:20:30 +00:00
2024-08-13 11:33:49 +00:00
## Configuration
If you are using [GitHub styled alerts ](/cont/markdown#alerts ), by default the theme also accepts alert levels like `info` not known to GitHub's implementation. If this interferes with your layout, you can turn this extension off by setting `disableBlockquoteNoticeSupport=true` in your `hugo.toml` .
### Global Configuration File
This example reflects the default configuration also used if you don't set anything explicitly.
{{< multiconfig file = hugo > }}
[params]
disableBlockquoteNoticeSupport = false
{{< / multiconfig > }}
2021-07-16 20:04:22 +00:00
## Examples
2021-08-23 20:16:08 +00:00
2024-09-01 11:56:39 +00:00
### By Severity Using Markdown Syntax
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
````md
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
2022-05-23 22:37:03 +00:00
2024-09-01 11:56:39 +00:00
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!INFO]
> Information that users <ins>_might_</ins> find interesting.
2021-07-16 17:48:48 +00:00
2024-09-01 11:56:39 +00:00
> [!NOTE]
> Useful information that users should know, even when skimming content.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!TIP]
> Helpful advice for doing things better or more easily.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
2022-06-07 18:30:07 +00:00
````
2022-05-23 22:37:03 +00:00
2024-09-01 11:56:39 +00:00
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!INFO]
> Information that users <ins>_might_</ins> find interesting.
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
> [!NOTE]
> Useful information that users should know, even when skimming content.
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
> [!TIP]
> Helpful advice for doing things better or more easily.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
2024-08-13 10:48:25 +00:00
2024-09-01 11:56:39 +00:00
### By Brand Colors with Title and Icon Variantion
2024-08-13 10:48:25 +00:00
````go
2024-09-01 11:56:39 +00:00
{{%/* notice style="primary" title="Primary" */%}}
A **primary** disclaimer
2024-08-13 10:48:25 +00:00
{{%/* /notice */%}}
2024-09-01 11:56:39 +00:00
{{%/* notice style="secondary" icon="stopwatch" */%}}
A **secondary** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="accent" */%}}
An **accent** 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
2024-09-01 11:56:39 +00:00
{{% notice style="primary" title="Primary" %}}
A **primary** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
{{% notice style="secondary" icon="stopwatch" %}}
A **secondary** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
{{% notice style="accent" %}}
An **accent** disclaimer
2017-08-20 15:10:29 +00:00
{{% /notice %}}
2024-09-01 11:56:39 +00:00
### By Color with Title and Icon Variantion
2022-05-23 22:37:03 +00:00
2021-08-23 21:32:34 +00:00
````go
2024-09-01 11:56:39 +00:00
{{%/* notice style="blue" */%}}
A **blue** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="cyan" title="Cyan" */%}}
A **cyan** disclaimer
2021-07-16 20:04:22 +00:00
{{%/* /notice */%}}
2024-09-01 11:56:39 +00:00
{{%/* notice style="green" title="Green" */%}}
A **green** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="grey" icon="bug" */%}}
A **grey** disclaimer
2023-01-23 23:14:10 +00:00
{{%/* /notice */%}}
2024-09-01 11:56:39 +00:00
{{%/* notice style="magenta" title="Magenta" */%}}
A **magenta** disclaimer
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="orange" title="Orange" icon="bug" */%}}
A **orange** disclaimer
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="red" */%}}
A **red** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
````
2021-07-16 20:04:22 +00:00
2022-06-07 18:30:07 +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
2024-09-01 11:56:39 +00:00
{{% notice style="cyan" title="Cyan" %}}
A **cyan** disclaimer
{{% /notice %}}
2022-05-23 22:37:03 +00:00
2022-06-07 18:30:07 +00:00
{{% notice style="green" title="Green" %}}
A **green** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2022-06-07 18:30:07 +00:00
{{% notice style="grey" icon="bug" %}}
A **grey** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2024-09-01 11:56:39 +00:00
{{% notice style="magenta" title="Magenta" %}}
A **magenta** disclaimer
{{% /notice %}}
2022-05-23 22:37:03 +00:00
2022-06-07 18:30:07 +00:00
{{% notice style="orange" title="Orange" icon="bug" %}}
A **orange** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2022-06-07 18:30:07 +00:00
{{% 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
2021-10-22 02:20:30 +00:00
````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.
2021-10-22 02:20:30 +00:00
{{%/* /notice */%}}
````
2022-05-23 22:37:03 +00:00
2022-06-07 18:30:07 +00:00
{{% notice default "Pay Attention to this Note!" "skull-crossbones" %}}
2022-05-23 22:37:03 +00:00
Some serious information.
{{% /notice %}}
2022-06-07 18:30:07 +00:00
#### 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 */%}}
````
2022-06-07 18:30:07 +00:00
{{% notice style="transparent" title="Pay Attention to this Note!" icon="skull-crossbones" %}}
Some serious information.
{{% /notice %}}
2023-01-23 21:35:43 +00:00
2024-09-01 11:56:39 +00:00
### Various Features
#### With User-Defined Color, Font Awesome Brand Icon and Markdown in Title and Content
````go
{{% include "shortcodes/include/INCLUDE_ME.md" %}}
````
{{% notice color="fuchsia" title="**Hugo** is _awesome_ " icon="fa-fw fab fa-hackerrank" %}}
{{% include "shortcodes/include/INCLUDE_ME.md" %}}
{{% /notice %}}
#### Expandable Content Area
````go
{{%/* notice style="primary" title="Expand me..." expanded="true" */%}}
No need to press you!
{{%/* /notice */%}}
````
{{% notice style="primary" title="Expand me..." expanded="true" %}}
No need to press you!
{{% /notice %}}
2023-01-23 21:35:43 +00:00
````go
2024-09-01 11:56:39 +00:00
{{%/* notice style="primary" title="Expand me..." expanded="false" */%}}
Thank you!
2023-01-23 21:35:43 +00:00
{{%/* /notice */%}}
````
2024-09-01 11:56:39 +00:00
{{% notice style="primary" title="Expand me..." expanded="false" %}}
Thank you!
{{% /notice %}}
#### No Content
{{% notice style="accent" title="Just a bar" %}}
2023-01-23 21:35:43 +00:00
{{% /notice %}}