Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 848 Bytes

File metadata and controls

48 lines (31 loc) · 848 Bytes
title
Buttons Shortcode

Buttons are styled links that can lead to local page or external link.

Code Example

{{</* button relref="/" [class="..."] */>}}Get Home{{</* /button */>}}
{{</* button href="https://github.com/" */>}}Contribute{{</* /button */>}}

Button for relative URLs

{{< tabs "relative" >}} {{< tab "Code" >}}

{{</* button relref="/" */>}}Go Home{{</* /button */>}}

{{< /tab >}}

{{< tab "Result" >}}

{{< button relref="/" >}}Go Home{{< /button >}}

{{< /tab >}} {{< /tabs >}}

Button for external URLs

{{< tabs "external" >}} {{< tab "Code" >}}

{{</* button href="https://newtonproject.org" */>}}Newton Project{{</* /button */>}}

{{< /tab >}}

{{< tab "Result" >}}

{{< button href="https://newtonproject.org" >}}Newton Project{{< /button >}}

{{< /tab >}} {{< /tabs >}}