2022-06-24 10:54:16 +02:00
|
|
|
{{- $ref := "" }}
|
2022-06-27 09:14:24 +02:00
|
|
|
{{- $class := "" }}
|
2022-06-24 10:54:16 +02:00
|
|
|
{{- $size := default "regular" (.Get "size" | lower) }}
|
2021-05-21 15:51:19 +02:00
|
|
|
|
2022-06-24 10:54:16 +02:00
|
|
|
{{- if not (in (slice "regular" "large") $size) }}
|
|
|
|
{{- $size = "regular" }}
|
|
|
|
{{- end }}
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2022-06-24 10:54:16 +02:00
|
|
|
{{- with .Get "href" }}
|
|
|
|
{{- $ref = . }}
|
|
|
|
{{- end }}
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2022-06-24 10:54:16 +02:00
|
|
|
{{- with .Get "relref" }}
|
|
|
|
{{- $ref = relref $ . }}
|
|
|
|
{{- end }}
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2022-06-27 09:14:24 +02:00
|
|
|
{{- with .Get "class" }}
|
|
|
|
{{- $class = . }}
|
|
|
|
{{- end }}
|
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
|
2022-06-27 09:14:24 +02:00
|
|
|
<span class="gdoc-button gdoc-button--{{ $size }}{{ with $class }}{{ printf " %s" . }}{{ end }}">
|
2022-01-06 13:58:10 +01:00
|
|
|
<a
|
|
|
|
class="gdoc-button__link"
|
2022-06-24 10:54:16 +02:00
|
|
|
{{- with $ref }}{{ printf " href=\"%s\"" . | safeHTMLAttr }}{{ end }}
|
2022-01-06 13:58:10 +01:00
|
|
|
>
|
|
|
|
{{ $.Inner }}
|
|
|
|
</a>
|
2020-02-05 00:41:13 +01:00
|
|
|
</span>
|