diff options
Diffstat (limited to '')
| -rw-r--r-- | themes/hugo-book/layouts/shortcodes/button.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/shortcodes/button.html b/themes/hugo-book/layouts/shortcodes/button.html new file mode 100644 index 0000000..efae3e0 --- /dev/null +++ b/themes/hugo-book/layouts/shortcodes/button.html @@ -0,0 +1,12 @@ +{{- $ref := "" }} +{{- $target := "" -}} +{{- with .Get "href" -}} + {{- $ref = . -}} + {{- $target = "_blank" -}} +{{- end -}} +{{- with .Get "relref" -}} + {{- $ref = relref $ . -}} +{{- end -}} +<a {{ with $ref }} href="{{.}}" {{ end }} {{ with $target }} target="{{.}}" rel="noopener" {{ end }} class="book-btn{{ with .Get "class" }} {{ . }}{{ end }}"> + {{- .InnerDeindent -}} +</a> |
