9 lines
162 B
HTML
9 lines
162 B
HTML
{{ define "main" }}
|
|
{{ $sections := split .Content "<h2" }}
|
|
{{ range after 1 $sections }}
|
|
<section>
|
|
{{ print "<h2" . | safeHTML }}
|
|
</section>
|
|
{{ end }}
|
|
{{ end }}
|