2023-09-26 08:15:31 +01:00
|
|
|
{{- $link := .Get "link" -}}
|
|
|
|
{{- $text := .Get "text" -}}
|
|
|
|
{{- $style := .Get "style" -}}
|
|
|
|
|
|
|
|
{{- $external := hasPrefix $link "http" -}}
|
|
|
|
{{- $href := cond (hasPrefix $link "/") ($link | relURL) $link -}}
|
|
|
|
|
|
|
|
<a
|
|
|
|
href="{{ $href }}"
|
2024-02-20 17:59:31 -05:00
|
|
|
class="not-prose hx-font-medium hx-cursor-pointer hx-px-6 hx-py-3 hx-rounded-full hx-text-center hx-text-white hx-inline-block hx-bg-primary-600 hover:hx-bg-primary-700 focus:hx-outline-none focus:hx-ring-4 focus:hx-ring-primary-300 dark:hx-bg-primary-600 dark:hover:hx-bg-primary-700 dark:focus:hx-ring-primary-800 hx-transition-all hx-ease-in hx-duration-200"
|
2023-09-26 08:15:31 +01:00
|
|
|
{{ with $style }}style="{{ . | safeCSS }}"{{ end }}
|
|
|
|
{{ if $external }}target="_blank" rel="noreferrer"{{ end -}}
|
|
|
|
>
|
|
|
|
{{- $text -}}
|
|
|
|
</a>
|