2021-07-01 09:05:26 +02:00
|
|
|
---
|
|
|
|
title: Buttons
|
|
|
|
---
|
|
|
|
|
2020-01-12 15:33:02 +01:00
|
|
|
Buttons are styled links that can lead to local page or external link.
|
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
<!-- prettier-ignore-start -->
|
2020-01-12 15:33:02 +01:00
|
|
|
```tpl
|
2021-05-24 15:12:58 +02:00
|
|
|
{{</* button relref="/" [class="...", size="large|regular"] */>}}Get Home{{</* /button */>}}
|
2020-09-27 22:21:29 +02:00
|
|
|
{{</* button href="https://github.com/thegeeklab/hugo-geekdoc" */>}}Contribute{{</* /button */>}}
|
2020-01-12 15:33:02 +01:00
|
|
|
```
|
2022-01-06 13:58:10 +01:00
|
|
|
<!-- prettier-ignore-end -->
|
2020-01-12 15:33:02 +01:00
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
{{< button relref="/" >}}Get Home{{< /button >}}
|
2020-09-27 22:21:29 +02:00
|
|
|
{{< button href="https://github.com/thegeeklab/hugo-geekdoc" >}}Contribute{{< /button >}}
|