mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
16 lines
737 B
Markdown
16 lines
737 B
Markdown
|
---
|
||
|
title: Button
|
||
|
description : "Nice buttons on your page."
|
||
|
---
|
||
|
|
||
|
A button is a just a clickable button with optional icon.
|
||
|
|
||
|
```
|
||
|
{{%/* button href="https://getgrav.org/" */%}}Get Grav{{%/* /button */%}}
|
||
|
{{%/* button href="https://getgrav.org/" icon="fa fa-download" */%}}Get Grav with icon{{%/* /button */%}}
|
||
|
{{%/* button href="https://getgrav.org/" icon="fa fa-download" icon-position="right" */%}}Get Grav with icon right{{%/* /button */%}}
|
||
|
```
|
||
|
|
||
|
{{% button href="https://getgrav.org/" %}}Get Grav{{% /button %}}
|
||
|
{{% button href="https://getgrav.org/" icon="fa fa-download" %}}Get Grav with icon{{% /button %}}
|
||
|
{{% button href="https://getgrav.org/" icon="fa fa-download" icon-position="right" %}}Get Grav with icon right{{% /button %}}
|