mirror of
https://github.com/imfing/hextra.git
synced 2025-05-13 03:56:27 -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
37 lines
1.5 KiB
HTML
37 lines
1.5 KiB
HTML
{{- $title := .Get "title" -}}
|
|
{{- $subtitle := .Get "subtitle" -}}
|
|
{{- $class := .Get "class" -}}
|
|
{{- $image := .Get "image" -}}
|
|
{{- $imageClass := .Get "imageClass" -}}
|
|
{{- $style := .Get "style" -}}
|
|
{{- $icon := .Get "icon" -}}
|
|
{{- $link := .Get "link" -}}
|
|
|
|
{{- $external := hasPrefix $link "http" -}}
|
|
{{- $href := cond (strings.HasPrefix $link "/") ($link | relURL) $link -}}
|
|
|
|
{{- if hasPrefix $image "/" -}}
|
|
{{- $image = relURL (strings.TrimPrefix "/" $image) -}}
|
|
{{- end -}}
|
|
|
|
<a
|
|
{{ with $link }}href="{{ $href }}" {{ with $external }} target="_blank" rel="noreferrer"{{ end }}{{ end }}
|
|
{{ with $style }}style="{{ . | safeCSS }}"{{ end }}
|
|
class="{{ $class }} hextra-feature-card not-prose hx-block hx-relative hx-overflow-hidden hx-rounded-3xl hx-border hx-border-gray-200 hover:hx-border-gray-300 dark:hx-border-neutral-800 dark:hover:hx-border-neutral-700 before:hx-pointer-events-none before:hx-absolute before:hx-inset-0 before:hx-bg-glass-gradient"
|
|
>
|
|
<div class="hx-relative hx-w-full hx-p-6">
|
|
<h3 class="hx-text-2xl hx-font-medium hx-leading-6 hx-mb-2 hx-flex hx-items-center">
|
|
{{ with $icon -}}
|
|
<span class="hx-pr-2">
|
|
{{- partial "utils/icon.html" (dict "name" . "attributes" "height=1.5rem") -}}
|
|
</span>
|
|
{{ end -}}
|
|
<span>{{ $title }}</span>
|
|
</h3>
|
|
<p class="hx-text-gray-500 dark:hx-text-gray-400 hx-text-sm hx-leading-6">{{ $subtitle | markdownify }}</p>
|
|
</div>
|
|
{{- with $image -}}
|
|
<img src="{{ . }}" class="hx-absolute hx-max-w-none {{ $imageClass }}" alt="{{ $title }}" />
|
|
{{- end -}}
|
|
</a>
|