A {{ 2col }} shortcode and styling to make a 2 column grid

If the shortcode contains only figures, lay it out wide and add XL margins like
other figures.
This commit is contained in:
Eryn Wells 2025-01-04 10:12:56 -08:00
parent 7d56bd2f78
commit 1e6db43354
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{{- $size := .Get 0 | default "main" -}}
{{- $classes := slice "two-column" -}}
{{- if eq $size "wide" -}}
{{- $classes = $classes | append "wide" -}}
{{- end -}}
<div class="{{ delimit $classes " " }}">
{{ .Inner }}
</div>