mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 03:19:25 +00:00
10 lines
368 B
HTML
10 lines
368 B
HTML
{{- $ratio := (split (.Get "ratio") ":") -}}
|
|
<div class="book-columns flex flex-wrap{{ with .Get "class" }} {{ . }}{{ end }}">
|
|
{{ range $index, $content := split .InnerDeindent "<--->" }}
|
|
{{- $grow := default 1 (index $ratio $index) -}}
|
|
<div class="flex-even markdown-inner" style="flex-grow: {{ $grow }};">
|
|
{{ $content | safeHTML }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|