Sha256: e32105eb54fc0cb1246b60f132b0fb40cc22c290051893efe2419f0839a3ae57

Contents?: true

Size: 856 Bytes

Versions: 4

Compression:

Stored size: 856 Bytes

Contents

{%- include reset/workdir.liquid %}

{% comment %} list the root files {% endcomment %}
<ul>
    {%- for item in workdir_files -%}
        {%- assign level = item.dir | append: "temp" | replace_first: "/", "" | split: "/" | size -%}
        {%- if site_lang != lang -%}
            {%- assign level = level | minus: 1 -%}
        {%- endif -%}
        {%- capture current -%}
            {%- if page.url == item.url %}current{% endif -%}
        {%- endcapture %}
        <li class="toctree-l{{ level }} {{ current }}">
            <a class="reference internal {{ current }}" href="{{ item.url | relative_url }}">
                {{ item.title | default: item.url }}
            </a>
        </li>
    {%- endfor %}
</ul>

{% comment %} list the root dirs {% endcomment %}
{%- for workdir in workdir_dirs %}{% include extend/toctree.liquid %}{% endfor -%}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jekyll-rtd-theme-1.1.4 _includes/toctree.liquid
jekyll-rtd-theme-1.1.3 _includes/toctree.liquid
jekyll-rtd-theme-1.1.2 _includes/toctree.liquid
jekyll-rtd-theme-1.1.1 _includes/toctree.liquid