website/themes/hugoplate/layouts/shortcodes/mdcolumns.html

13 lines
557 B
HTML
Raw Normal View History

<!-- Columns Container Start -->
<div class="md:flex {{ if isset .Params "center" }}items-center {{ end }}{{ with .Get "class" }} {{ . }} {{ else }} mt-6 {{ end }}">
<!-- Split content into columns based on a unique delimiter, e.g., "..column.." -->
{{ range split (trim .Inner " \n") "..column.." }}
{{ if ne . "" }} <!-- Check if the column content is not empty -->
<div class="markdown-inner items-center flex-1 px-4">
<!-- Convert Markdown column content to HTML -->
{{ . | markdownify }}
</div>
{{ end }}
{{ end }}
</div>
<!-- Columns Container End -->