webpage/themes/hugo-book/layouts/shortcodes/section.html
kekskurse 27e6a14105 init
2024-11-26 23:25:09 +01:00

13 lines
322 B
HTML

{{- warnf "Section shortcode is deprecated and will be removed" -}}
<dl>
{{ range .Page.Pages }}
<dt>
<a href="{{ .RelPermalink }}">{{ partial "docs/title" . }}</a>
</dt>
{{ if (in $.Params "summary") -}}
<dd class="markdown-inner">
{{ default .Summary .Description }}
</dd>
{{ end -}}
{{ end }}
</dl>