Files
hextra_mirror/layouts/_shortcodes/cards.html
2025-08-15 09:09:58 +08:00

12 lines
253 B
HTML

{{- /*
A shortcode for creating cards.
@param {string} cols The number of columns.
@example {{< cards cols="3" >}}{{< /cards >}}
*/ -}}
{{- $cols := .Get "cols" | default 3 -}}
{{- partial "shortcodes/cards" (dict "cols" $cols "content" .Inner) -}}