Sha256: f86446c6094291bfb2c878bd37433b81f01ef420c308c68db251187134a2188b
Contents?: true
Size: 970 Bytes
Versions: 17
Compression:
Stored size: 970 Bytes
Contents
{%- comment -%} Include as: {%- include components/children_nav.html -%} Depends on: page, site. Results in: HTML for the children-navigation component. Includes: sorted_pages.html toc_heading_custom.html Overwrites: child_pages. {%- endcomment -%} {%- if page.has_children == true and page.has_toc != false -%} {%- assign child_pages = site[page.collection] | default: site.html_pages | where: "parent", page.title | where: "grand_parent", page.parent -%} {%- include sorted_pages.html pages = child_pages -%} {%- if page.child_nav_order == 'desc' or page.child_nav_order == 'reversed' -%} {%- assign sorted_pages = sorted_pages | reverse -%} {%- endif -%} {%- endif -%} <hr> {% include toc_heading_custom.html %} <ul> {% for child in sorted_pages %} <li> <a href="{{ child.url | relative_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %} </li> {% endfor %} </ul>
Version data entries
17 entries across 17 versions & 3 rubygems