Files
hugo-book/layouts/_shortcodes/section.html

14 lines
374 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">
{{- or .Description .Summary site.Params.description | plainify | htmlUnescape }}
</dd>
{{ end -}}
{{ end }}
</dl>