mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-31 23:52:18 +01:00
54 lines
1.9 KiB
HTML
54 lines
1.9 KiB
HTML
<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: ' ', '-' | append: '/' %}
|
|
{% 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 %}
|
|
<a class="bd-toc-link" href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ link.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' }}">
|
|
{% endif %}
|
|
{{ group.title }}
|
|
</a>
|
|
|
|
<ul class="nav bd-sidenav">
|
|
{% for doc in group.pages %}
|
|
{% assign slug = doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' %}
|
|
{% capture slug %}/{{ slug }}{% endcapture %}
|
|
{% assign active = nil %}
|
|
|
|
{% if page.url contains slug %}
|
|
{% assign active = 'active bd-sidenav-active' %}
|
|
{% endif %}
|
|
|
|
<li class="{{ active }}">
|
|
<a href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' }}/">
|
|
{{ 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>
|