hugo-book/layouts/shortcodes/section.html

14 lines
322 B
HTML
Raw Normal View History

2024-10-08 13:50:46 +00:00
{{- 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") -}}
2021-05-03 20:59:33 +00:00
<dd class="markdown-inner">
{{ default .Summary .Description }}
</dd>
{{ end -}}
{{ end }}
</dl>