Files
Grasswren/layouts/_default/index.html
T

9 lines
162 B
HTML
Raw Normal View History

2026-07-11 14:54:56 -04:00
{{ define "main" }}
{{ $sections := split .Content "<h2" }}
{{ range after 1 $sections }}
<section>
{{ print "<h2" . | safeHTML }}
</section>
{{ end }}
{{ end }}