Fix section summary rendering (Hugo 0.146)

Didn't notice this was broken because my public website doesn't use
subsections at all.
This commit is contained in:
2025-06-29 02:36:58 -05:00
parent ff4998f31b
commit 6ff0ffb80b

View File

@ -0,0 +1,12 @@
<a class="section-anchor" href="{{ .Permalink }}">
<div class="section">
<h2 class="section-title">
{{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
{{ .Title | markdownify }}
</h2>
<div class="section-description">
{{ partial "description-or-summary.html" . }}
</div>
</div>
</a>