2019-05-27 18:25:58 +02:00
|
|
|
{{ $ref := "" }}
|
|
|
|
{{ $target := "" }}
|
|
|
|
{{ with .Get "href" }}
|
|
|
|
{{ $ref = . }}
|
|
|
|
{{ $target = "_blank" }}
|
|
|
|
{{ end }}
|
|
|
|
{{ with .Get "relref" }}
|
|
|
|
{{ $ref = relref $ . }}
|
|
|
|
{{ end }}
|
2021-05-20 18:58:02 +02:00
|
|
|
<a {{ with $ref }} href="{{.}}" {{ end }} {{ with $target }} target="{{.}}" rel="noopener" {{ end }} class="book-btn{{ with .Get "class" }} {{ . }}{{ end }}">
|
2021-08-30 14:32:11 +02:00
|
|
|
{{ .Inner | .Page.RenderString }}
|
2019-06-11 13:40:50 +02:00
|
|
|
</a>
|