Files
libertytoolsio/themes/hugo-book.backup/layouts/_shortcodes/section.html

14 lines
368 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>