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:
parent
7d56bd2f78
commit
1e6db43354
3 changed files with 42 additions and 0 deletions
10
layouts/shortcodes/2col.html
Normal file
10
layouts/shortcodes/2col.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue