diff options
Diffstat (limited to '')
| -rw-r--r-- | themes/hugo-book/layouts/shortcodes/section.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/shortcodes/section.html b/themes/hugo-book/layouts/shortcodes/section.html new file mode 100644 index 0000000..b700ec4 --- /dev/null +++ b/themes/hugo-book/layouts/shortcodes/section.html @@ -0,0 +1,13 @@ +{{- 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> |
