Files
Grasswren/layouts/_default/index.html
T
2026-09-02 20:11:35 -04:00

13 lines
364 B
HTML

{{ define "main" }}
{{- $content := .Content -}}
{{- $content = replaceRE `<div class="footnotes" role="doc-endnotes">` "" $content -}}
{{- $content = replaceRE `</div>\s*$` "" $content -}}
{{- $tmp := $content | safeHTML -}}
{{ $sections := split $tmp "<h2" }}
{{ range after 1 $sections }}
<section>
{{ print "<h2" . | safeHTML }}
</section>
{{ end }}
{{ end }}