1
0
mirror of synced 2025-12-21 19:06:49 -05:00
Files
docs/includes/generic-toc-list.html
Sarah Schneider 16414cf294 Update includes/generic-toc-list.html
Co-authored-by: James M. Greene <JamesMGreene@github.com>
2021-04-23 11:17:57 -04:00

25 lines
566 B
HTML

{% if tocItems %}
<ul>
{% for tocItem in tocItems %}
{% assign title = tocItem.title %}
{% assign fullPath = tocItem.fullPath %}
{% assign intro = tocItem.intro %}
<li>{% include liquid-tags/link %}
{% if tocItem.childTocItems %}
{% unless page.relativePath == "github/index.md" %}
<ul>
{% for childItem in tocItem.childTocItems %}
{% assign title = childItem.title %}
{% assign fullPath = childItem.fullPath %}
<li>{% include liquid-tags/link %}</li>
{% endfor %}
</ul>
{% endunless %}
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}