2025-08-15 03:09:58 +02:00
|
|
|
{{- /*
|
|
|
|
A shortcode for displaying a feature grid.
|
|
|
|
|
|
|
|
@param {string} cols The number of columns.
|
|
|
|
@param {string} style The style of the grid.
|
|
|
|
|
|
|
|
@example {{< hextra/feature-grid cols="3" >}}{{< /hextra/feature-grid >}}
|
|
|
|
*/ -}}
|
|
|
|
|
2024-03-31 23:06:26 +02:00
|
|
|
{{- $cols := .Get "cols" | default 3 -}}
|
|
|
|
{{- $style := .Get "style" | default "" -}}
|
|
|
|
|
|
|
|
{{- $css := printf "--hextra-feature-grid-cols: %v; %s" $cols $style -}}
|
2023-09-26 08:15:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
<div
|
2025-03-29 12:51:42 +00:00
|
|
|
class="hextra-feature-grid hx:grid hx:sm:max-lg:grid-cols-2 hx:max-sm:grid-cols-1 hx:gap-4 hx:w-full not-prose"
|
2024-03-31 23:06:26 +02:00
|
|
|
{{ with $css }}style="{{ . | safeCSS }}"{{ end }}
|
2023-09-26 08:15:31 +01:00
|
|
|
>
|
|
|
|
{{ .Inner }}
|
|
|
|
</div>
|