sass-site/source/_includes/documentation_toc.liquid

18 lines
674 B
Plaintext
Raw Normal View History

2023-05-24 18:54:23 +02:00
<ul>
{%- if parent_href -%}
<li class="overview">
<a href="{{ parent_href }}" {% if url == parent_href %}class="selected"{% endif %}>Overview</a>
</li>
{%- endif -%}
{%- for section in toc -%}
{%- assign link = section | getDocTocData -%}
{%- assign children = section[':children'] -%}
<li>
2023-05-25 17:00:51 +02:00
<a href="{{ link.href }}" class="{% if children %}section {% endif %}{% if url | startsWith: link.href %}open selected{% elsif url == '' %}open{% endif %}">{{ link.text }}</a>
2023-05-24 18:54:23 +02:00
{%- if children -%}
{% render 'documentation_toc', url: url, toc: children, parent_href: link.href %}
{%- endif -%}
</li>
{%- endfor -%}
</ul>