17 lines
387 B
HTML
17 lines
387 B
HTML
{{ $ref := "" }}
|
|
{{ $target := "" }}
|
|
|
|
{{ with .Get "href" }}
|
|
{{ $ref = . }}
|
|
{{ $target = "_blank" }}
|
|
{{ end }}
|
|
|
|
{{ with .Get "relref" }}
|
|
{{ $ref = relref $ . }}
|
|
{{ end }}
|
|
|
|
<span class="gdoc-button{{ with .Get "class" }} {{ . }}{{ end }}">
|
|
<a {{ with $ref }} href="{{.}}" {{ end }} {{ with $target }} target="{{.}}" {{ end }} class="gdoc-button__link">
|
|
{{ $.Inner }}
|
|
</a>
|
|
</span>
|