2021-07-01 07:05:26 +00:00
|
|
|
---
|
|
|
|
title: Buttons
|
|
|
|
---
|
|
|
|
|
2020-01-12 14:33:02 +00:00
|
|
|
Buttons are styled links that can lead to local page or external link.
|
|
|
|
|
2023-10-27 19:38:23 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
<!-- prettier-ignore -->
|
2020-01-12 14:33:02 +00:00
|
|
|
```tpl
|
2021-05-24 13:12:58 +00:00
|
|
|
{{</* button relref="/" [class="...", size="large|regular"] */>}}Get Home{{</* /button */>}}
|
2020-09-27 20:21:29 +00:00
|
|
|
{{</* button href="https://github.com/thegeeklab/hugo-geekdoc" */>}}Contribute{{</* /button */>}}
|
2020-01-12 14:33:02 +00:00
|
|
|
```
|
2023-10-27 19:38:23 +00:00
|
|
|
|
|
|
|
### Attributes
|
|
|
|
|
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
<!-- spellchecker-disable -->
|
|
|
|
{{< propertylist name=shortcode-buttons sort=name order=asc >}}
|
|
|
|
<!-- spellchecker-enable -->
|
2022-01-06 12:58:10 +00:00
|
|
|
<!-- prettier-ignore-end -->
|
2020-01-12 14:33:02 +00:00
|
|
|
|
|
|
|
## Example
|
|
|
|
|
2023-05-03 12:00:00 +00:00
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
<!-- markdownlint-capture -->
|
|
|
|
<!-- markdownlint-disable -->
|
2020-01-12 14:33:02 +00:00
|
|
|
{{< button relref="/" >}}Get Home{{< /button >}}
|
2020-09-27 20:21:29 +00:00
|
|
|
{{< button href="https://github.com/thegeeklab/hugo-geekdoc" >}}Contribute{{< /button >}}
|
2023-05-03 12:00:00 +00:00
|
|
|
<!-- markdownlint-restore -->
|
|
|
|
<!-- prettier-ignore-end -->
|