mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-22 13:10:40 +00:00
22 lines
472 B
HTML
22 lines
472 B
HTML
{{ $ref := "" }}
|
|
{{ $size := default "regular" (.Get "size" | lower) }}
|
|
|
|
{{ if not (in (slice "regular" "large") $size) }}
|
|
{{ $size = "regular" }}
|
|
{{ end }}
|
|
|
|
{{ with .Get "href" }}
|
|
{{ $ref = . }}
|
|
{{ end }}
|
|
|
|
{{ with .Get "relref" }}
|
|
{{ $ref = relref $ . }}
|
|
{{ end }}
|
|
|
|
|
|
<span class="gblog-button gblog-button--{{ $size }}{{ with .Get "class" }}{{ . }}{{ end }}">
|
|
<a {{ with $ref }}href="{{ . }}"{{ end }} class="gblog-button__link">
|
|
{{ $.Inner }}
|
|
</a>
|
|
</span>
|