nav-docs.html 2.18 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<form class="bd-search hidden-sm-down">
  <input type="text" class="form-control" id="search-input" placeholder="Search..." autocomplete="off">
  <div class="dropdown-menu bd-search-results" id="search-results"></div>
</form>

<nav class="bd-links" id="docsNavbarContent">
  {% for group in site.data.nav %}
  {% assign link = group.pages | first %}
  {% assign slug = group.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' %}
  {% assign active = nil %}

  {% if page.url contains slug %}
    {% assign active = 'active' %}
  {% endif %}

  <div class="bd-toc-item {{ active }}">
    {% if slug == "examples" %}
        <a class="bd-toc-link" href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/">
      {% else %}
20
        <a class="bd-toc-link" href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ link.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-'  }}{% if link.title || page.title %}/{% endif %}">
Mark Otto's avatar
Mark Otto committed
21
      {% endif %}
22
23
24
25
26
27
        {{ group.title }}
      </a>

      <ul class="nav bd-sidenav">
        {% for doc in group.pages %}
          {% assign slug = doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' %}
28
          {% capture slug %}/{{ slug }}{% endcapture %}
29
30
31
32
33
34
35
          {% assign active = nil %}

          {% if page.url contains slug %}
            {% assign active = 'active bd-sidenav-active' %}
          {% endif %}

          <li class="{{ active }}">
36
            <a href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' }}/">
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
              {{ doc.title }}
            </a>

            {% comment %}
            {% unless doc.sections == nil %}
              <ul class="nav">
                {% for section in doc.sections %}
                  <li>
                    <a href="#{{ section.title | downcase | replace: ' ', '-' }}">
                      {{ section.title }}
                    </a>
                  </li>
                {% endfor %}
              </ul>
            {% endunless %}
            {% endcomment %}
          </li>
        {% endfor %}
      </ul>
    </div>
  {% endfor %}
</nav>