Add a .Render view for subsection summary too

This commit is contained in:
2021-11-22 02:07:48 -06:00
parent f77c61b561
commit e1e211a42a
2 changed files with 14 additions and 19 deletions

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>