summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/button.html
blob: 88b0f2056bebfe825fd8d75412fd711b76950a54 (plain)
1
2
3
4
5
6
7
8
9
10
{{ $ref := "" }}
{{ $target := "" }}
{{ with .Get "href" }}
  {{ $ref = . }}
  {{ $target = "_blank" }}
{{ end }}
{{ with .Get "relref" }}
  {{ $ref = relref $ . }}
{{ end }}
<a {{ with $ref }} href="{{.}}" {{ end }} {{ with $target }} target="{{.}}" {{ end }} class="book-btn">{{ $.Inner }}</a>