3.7 KiB
+++ categories = ['howto', 'reference'] description = 'Nice icons for your page' title = 'Icon' +++
The icon
shortcode displays icons using the Font Awesome library.
{{% icon skull-crossbones %}} {{% icon style="warning" %}} {{% icon icon="angle-double-up" color="blue" %}}
Usage
{{< tabs groupid="shortcode-parameter">}} {{% tab title="shortcode" %}}
{{%/* icon icon="skull-crossbones" */%}}
{{%/* icon style="warning" */%}}
{{%/* icon icon="angle-double-up" color="blue" */%}}
{{% /tab %}} {{% tab title="shortcode (positional)" %}}
{{%/* icon skull-crossbones */%}}
{{%/* icon exclamation-triangle */%}}
{{%/* icon angle-double-up */%}}
{{% /tab %}} {{% tab title="partial" %}}
{{ partial "shortcodes/icon.html" (dict
"page" .
"icon" "skull-crossbones"
)}}
{{ partial "shortcodes/icon.html" (dict
"page" .
"style" "warning"
)}}
{{ partial "shortcodes/icon.html" (dict
"page" .
"icon" "angle-double-up"
"color" "blue"
)}}
{{% /tab %}} {{< /tabs >}}
Parameter
Name | Position | Default | Notes |
---|---|---|---|
icon | 1 | <empty> | Font Awesome icon name to be displayed. It will be displayed in the text color of its according context. |
style | <empty> | The style scheme used for the icon. - by severity: caution , important , info , note , tip , warning - by brand color: primary , secondary , accent - by color: blue , cyan , green , grey , magenta , orange , red - by special color: default , transparent , code You can also define your own styles. |
|
color | <empty> | The CSS color value to be used. If not set, the chosen color depends on the style. Any given value will overwrite the default. - for severity styles: a nice matching color for the severity - for all other styles: the corresponding color |
Finding an icon
Browse through the available icons in the Font Awesome Gallery. Notice that the free filter is enabled, as only the free icons are available by default.
Once on the Font Awesome page for a specific icon, for example the page for the heart, copy the icon name and paste into the Markdown content.
Customizing Icons
Font Awesome provides many ways to modify the icon
- Change color (by default the icon will inherit the parent color)
- Increase or decrease size
- Rotate
- Combine with other icons
Check the full documentation on web fonts with CSS for more.
Examples
Standard Usage
Built with {{%/* icon heart */%}} by Relearn and Hugo
Built with {{% icon heart %}} by Relearn and Hugo
With color
Built with {{%/* icon icon="heart" style="red" */%}} by Relearn and Hugo
Built with {{% icon icon="heart" style="red" %}} by Relearn and Hugo
Advanced HTML Usage
While the shortcode simplifies using standard icons, the icon customization and other advanced features of the Font Awesome library require you to use HTML directly. Paste the <i>
HTML into markup, and Font Awesome will load the relevant icon.
Built with <i class="fas fa-heart"></i> by Relearn and Hugo
Built with by Relearn and Hugo
To use these native HTML elements in your Markdown, add this in your hugo.toml
:
[markup.goldmark.renderer]
unsafe = true