hugo-theme-relearn/exampleSite/content/shortcodes/children/_index.en.md

52 lines
1.9 KiB
Markdown
Raw Normal View History

+++
alwaysopen = false
description = "List the child pages of a page"
title = "Children"
+++
2017-08-20 15:10:29 +00:00
Use the children shortcode to list the child pages of a page and the further descendants (children's children). By default, the shortcode displays links to the child pages.
## Usage
| Parameter | Default | Description |
|:--|:--|:--|
| page | _current_ | Specify the page name (section name) to display children for |
| containerstyle | "ul" | Choose the style used to group all children. It could be any HTML tag name |
| style | "li" | Choose the style used to display each descendant. It could be any HTML tag name |
2017-08-20 15:10:29 +00:00
| showhidden | "false" | When true, child pages hidden from the menu will be displayed |
| description | "false" | Allows you to include a short text under each page in the list. When no description exists for the page, children shortcode takes the first 70 words of your content. [Read more info about summaries on gohugo.io](https://gohugo.io/content/summaries/) |
| depth | 1 | Enter a number to specify the depth of descendants to display. For example, if the value is 2, the shortcode will display 2 levels of child pages. **Tips:** set 999 to get all descendants |
| sort | none | Sort children by **Weight** - to sort on menu order, **Name** - to sort alphabetically on menu label, **Identifier** - to sort alphabetically on identifier set in frontmatter, and **URL** - to sort by URL |
2017-08-20 15:10:29 +00:00
## Demo
````go
{{%/* children */%}}
````
2017-08-20 15:10:29 +00:00
{{% children %}}
````go
{{%/* children description="true" */%}}
````
2017-08-20 15:10:29 +00:00
2019-11-02 07:20:59 +00:00
{{%children description="true" %}}
2017-08-20 15:10:29 +00:00
````go
{{%/* children depth="3" showhidden="true" */%}}
````
2017-08-20 15:10:29 +00:00
{{% children depth="3" showhidden="true" %}}
````go
{{%/* children containerstyle="div" style="h2" depth="3" description="true" */%}}
````
2017-08-20 15:10:29 +00:00
{{% children containerstyle="div" style="h2" depth="3" description="true" %}}
2017-08-20 15:10:29 +00:00
````go
{{%/* children containerstyle="div" style="div" depth="999" */%}}
````
2017-08-20 15:10:29 +00:00
{{% children containerstyle="div" style="div" depth="999" %}}