2025-08-15 03:09:58 +02:00
|
|
|
{{- /*
|
|
|
|
|
A shortcode for creating cards.
|
|
|
|
|
|
|
|
|
|
@param {string} cols The number of columns.
|
|
|
|
|
|
|
|
|
|
@example {{< cards cols="3" >}}{{< /cards >}}
|
|
|
|
|
*/ -}}
|
|
|
|
|
|
2024-03-31 23:06:26 +02:00
|
|
|
{{- $cols := .Get "cols" | default 3 -}}
|
2023-08-19 13:42:59 +01:00
|
|
|
|
2024-10-14 23:03:22 +01:00
|
|
|
{{- partial "shortcodes/cards" (dict "cols" $cols "content" .Inner) -}}
|