mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
55 lines
1.8 KiB
HTML
55 lines
1.8 KiB
HTML
<form class="bd-search d-none d-sm-block">
|
|
<input type="search" class="form-control" id="search-input" placeholder="Search..." aria-label="Search for..." autocomplete="off">
|
|
<div class="dropdown-menu bd-search-results" id="search-results"></div>
|
|
</form>
|
|
|
|
<nav class="bd-links" id="docsNavbarContent">
|
|
{% assign page_slug = page.url | split: '/' | last %}
|
|
{% for group in site.data.nav %}
|
|
{% assign link = group.pages | first %}
|
|
{% assign link_slug = link.title | slugify %}
|
|
{% assign group_slug = group.title | slugify %}
|
|
{% assign active = nil %}
|
|
|
|
{% if page.group == group_slug %}
|
|
{% assign active = 'active' %}
|
|
{% endif %}
|
|
|
|
<div class="bd-toc-item {{ active }}">
|
|
<a class="bd-toc-link" href="{{ site.baseurl }}/{{ group_slug }}/{{ link_slug }}{% if link_slug %}/{% endif %}">
|
|
{{ group.title }}
|
|
</a>
|
|
|
|
<ul class="nav bd-sidenav">
|
|
{% for doc in group.pages %}
|
|
{% assign doc_slug = doc.title | slugify %}
|
|
{% assign active = nil %}
|
|
|
|
{% if page.group == group_slug and page_slug == doc_slug %}
|
|
{% assign active = 'active bd-sidenav-active' %}
|
|
{% endif %}
|
|
|
|
<li class="{{ active }}">
|
|
<a href="{{ site.baseurl }}/{{ group_slug }}/{{ doc_slug }}/">
|
|
{{ 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>
|