diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-10-08 23:55:34 +0200 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-10-08 23:55:34 +0200 |
commit | c7f93dc789da16ff03fa37b1c14ccc03c80e6b0a (patch) | |
tree | dac7298f9600cb14a51eb2a740e530ff2b29e6c5 /exampleSite/content/docs/shortcodes/buttons.md | |
parent | 1db63cef5cd631dd2fd73028183bc38ec816e92f (diff) |
Update example file structure, give each shortcode own file
Diffstat (limited to 'exampleSite/content/docs/shortcodes/buttons.md')
-rw-r--r-- | exampleSite/content/docs/shortcodes/buttons.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/exampleSite/content/docs/shortcodes/buttons.md b/exampleSite/content/docs/shortcodes/buttons.md new file mode 100644 index 0000000..b8c96bb --- /dev/null +++ b/exampleSite/content/docs/shortcodes/buttons.md @@ -0,0 +1,13 @@ +# Buttons + +Buttons are styled links that can lead to local page or external link. + +```tpl +{{</* button relref="/" [class="..."] */>}}Get Home{{</* /button */>}} +{{</* button href="https://github.com/alex-shpak/hugo-book" */>}}Contribute{{</* /button */>}} +``` + +## Example + +{{< button relref="/" >}}Get Home{{< /button >}} +{{< button href="https://github.com/alex-shpak/hugo-book" >}}Contribute{{< /button >}} |