aboutsummaryrefslogtreecommitdiff
path: root/templates/partials/doc/global_toc.html
blob: 277739c1ca77aa9e759c8d21a7c40ee878a9b419 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  {% set section = get_section(path="documentation/_index.md") %}
<aside id="global_toc" class="relative col-span-1 h-full bg-gray-100 shadow-inner border-r border-t border-gray-200">
    {% if section.subsections %}
        <ul id="main-toc-menu" class="space-y-2 px-6 py-3 list-none">

            {% if section.pages %}
                {% for page in section.pages %}
                    <a 
                        href="{{ page.permalink | safe }}"
                        class="bg-white border border-garage-orange block p-1 rounded block font-semibold hover:bg-garage-orange hover:bg-opacity-20
                        {% if current_path == page.path %} activePage text-garage-orange border-opacity-100 border-garage-orange {% endif %}">
                        {{ page.title }}
                    </a>
                {% endfor %}
            {% endif %}

        {% for subsec in section.subsections %}
            {% set h1 = get_section(path=subsec) %}
            <li class="relative">
                <a 
                    href="{{ h1.permalink | safe }}"
                    class="bg-white border border-garage-orange block p-1 rounded-r rounded-tl font-semibold 
                           {% if current_path == h1.path %} activePage text-garage-orange font-semibold border-opacity-100 border-garage-orange {% else %}text-gray-800{% endif %}
                    ">
                    {{ h1.title }}
                </a>
                {% if h1.pages %}
                    <input type="checkbox" id="btn-{{ h1.title | slugify }}" class="deploySubMenu"/>
                    <label for="btn-{{ h1.title | slugify }}" class="absolute top-0 right-0.5 bg-garage-orange bg-opacity-10 border-l border-garage-orange border-opacity-20 cursor-pointer inline-block px-3 py-1" style="margin-top:0.08rem;">
                        <svg class="arrow w-6 h-6 text-garage-gray group-hover:text-garage-orange transform rotate-90" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
                    </label>
                    <ul class="subMenu border-l border-garage-orange space-y-0.5">
                        {% for h2 in h1.pages %}
                            <li>
                                <a 
                                    href="{{ h2.permalink | safe }}"
                                    class="docPage block pl-2 py-1 border-l-4 rounded-r border-opacity-0 hover:bg-garage-orange hover:bg-opacity-20
                                    {% if current_path == h2.path %} activePage text-garage-orange font-semibold border-opacity-100 border-garage-orange {% endif %}">
                                    {{ h2.title }}
                                </a>
                            </li>
                        {% endfor %}
                    </ul>
                {% endif %}
            </li>
        {% endfor %}
        </ul>
    {% endif %}
</aside>