summaryrefslogtreecommitdiffstats
path: root/themes/danix-xyz-hacker/layouts/shortcodes/gallery.html
blob: b66c3277e97de628598a2fcbf1394b33531f9738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- $cols := .Get "cols" | default "2" -}}

<div class="my-8 grid gap-4" style="grid-template-columns: repeat({{ $cols }}, 1fr)">
  {{- range $line := strings.Split .Inner "\n" -}}
    {{- if strings.Contains $line "![" -}}
      {{- $image := strings.TrimSpace $line -}}
      {{- if $image -}}
        {{ $image | markdownify | safeHTML }}
      {{- end -}}
    {{- end -}}
  {{- end -}}
</div>