aboutsummaryrefslogtreecommitdiff
path: root/_includes/docs-sidebar.html
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2017-08-15 17:53:48 +0300
committerGitHub <[email protected]>2017-08-15 17:53:48 +0300
commit7388d1acd367a3060ea45b44a5a6a4be04ca6055 (patch)
tree2c1bde8ad67e92b48d7ee9f1c2df884ce1e63a73 /_includes/docs-sidebar.html
parentac718c9b6db8a2ae865213ef1d4061915b7aeb1a (diff)
parent703c7daf571c750b6ee93cf8032fee2268e6bed0 (diff)
downloadbootstrap-7388d1acd367a3060ea45b44a5a6a4be04ca6055.tar.xz
bootstrap-7388d1acd367a3060ea45b44a5a6a4be04ca6055.zip
Merge pull request #23457 from twbs/v4-dev-xmr-liquid-whitespace
Reduce liquid's whitespace for a few pages and move about menu to the end.
Diffstat (limited to '_includes/docs-sidebar.html')
-rw-r--r--_includes/docs-sidebar.html40
1 files changed, 20 insertions, 20 deletions
diff --git a/_includes/docs-sidebar.html b/_includes/docs-sidebar.html
index 71ea14f7d..00eaf47a6 100644
--- a/_includes/docs-sidebar.html
+++ b/_includes/docs-sidebar.html
@@ -1,37 +1,37 @@
<form class="bd-search d-flex align-items-center">
<input type="search" class="form-control" id="search-input" placeholder="Search..." aria-label="Search for..." autocomplete="off">
- <button class="btn-link bd-search-docs-toggle d-md-none p-0 ml-3" type="button" data-toggle="collapse" data-target="#bd-docs-nav" aria-controls="bd-docs-nav" aria-expanded="false" aria-label="Toggle docs avigation">
+ <button class="btn-link bd-search-docs-toggle d-md-none p-0 ml-3" type="button" data-toggle="collapse" data-target="#bd-docs-nav" aria-controls="bd-docs-nav" aria-expanded="false" aria-label="Toggle docs navigation">
{% include icons/menu.svg class="" width="30" height="30" %}
</button>
</form>
<nav class="collapse bd-links" id="bd-docs-nav">
- {% 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 %}
+ {%- 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 %}
+ {%- if page.group == group_slug -%}
+ {%- assign active = 'active' -%}
+ {%- endif -%}
- <div class="bd-toc-item {{ active }}">
+ <div class="bd-toc-item{% unless active == nil %} {{ active }}{% endunless %}">
<a class="bd-toc-link" href="{{ site.baseurl }}/docs/{{ site.docs_version }}/{{ 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 %}
+ {%- 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 %}
+ {%- if page.group == group_slug and page_slug == doc_slug -%}
+ {%- assign active = 'active bd-sidenav-active' -%}
+ {%- endif -%}
- <li class="{{ active }}">
+ <li{% unless active == nil %} class="{{ active }}"{% endunless %}>
<a href="{{ site.baseurl }}/docs/{{ site.docs_version }}/{{ group_slug }}/{{ doc_slug }}/">
{{ doc.title }}
</a>
@@ -50,8 +50,8 @@
{% endunless %}
{% endcomment %}
</li>
- {% endfor %}
+ {%- endfor -%}
</ul>
</div>
- {% endfor %}
+ {%- endfor -%}
</nav>