mirror of
https://github.com/imfing/hextra.git
synced 2025-05-14 19:06:26 -04:00

* feat: add prefix to tailwind css classes * fix: remove unnecessary prefixes * fix: add missing prefix in other places * chore: regenerate hugo_stats.json * chore: run `npm run build:css` * chore: add `hx-` prefix to _index.fa.md * fix: lang switcher display issue * fix: add `hx-` prefix to showcase/index.fa.md * fix: lang switch param mistake
16 lines
730 B
HTML
16 lines
730 B
HTML
{{- $link := .Get "link" -}}
|
|
{{- $text := .Get "text" -}}
|
|
{{- $style := .Get "style" -}}
|
|
|
|
{{- $external := hasPrefix $link "http" -}}
|
|
{{- $href := cond (hasPrefix $link "/") ($link | relURL) $link -}}
|
|
|
|
<a
|
|
href="{{ $href }}"
|
|
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"
|
|
{{ with $style }}style="{{ . | safeCSS }}"{{ end }}
|
|
{{ if $external }}target="_blank" rel="noreferrer"{{ end -}}
|
|
>
|
|
{{- $text -}}
|
|
</a>
|