aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/_includes/docs-sidebar.html
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-09-07 11:26:02 +0200
committerMario Vavti <mario@mariovavti.com>2018-09-07 11:26:02 +0200
commit54fa28441c5f0bdcd9687615f4a6b7a0fab024a3 (patch)
tree33866b82c7ba3a6f6ecb9e6ca69233fc65379b43 /vendor/twbs/bootstrap/site/_includes/docs-sidebar.html
parentbb42ec2bfc0826dde3e3915566c4689762b128d7 (diff)
downloadvolse-hubzilla-54fa28441c5f0bdcd9687615f4a6b7a0fab024a3.tar.gz
volse-hubzilla-54fa28441c5f0bdcd9687615f4a6b7a0fab024a3.tar.bz2
volse-hubzilla-54fa28441c5f0bdcd9687615f4a6b7a0fab024a3.zip
install bootstrap via composer
Diffstat (limited to 'vendor/twbs/bootstrap/site/_includes/docs-sidebar.html')
-rw-r--r--vendor/twbs/bootstrap/site/_includes/docs-sidebar.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/_includes/docs-sidebar.html b/vendor/twbs/bootstrap/site/_includes/docs-sidebar.html
new file mode 100644
index 000000000..61edd8ec1
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/_includes/docs-sidebar.html
@@ -0,0 +1,57 @@
+<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" data-siteurl="{{ site.url }}" data-docs-version="{{ site.docs_version }}">
+ <button class="btn 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 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 -%}
+
+ {%- if page.group == group_slug -%}
+ {%- assign active = 'active' -%}
+ {%- endif -%}
+
+ <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 -%}
+
+ {%- if page.group == group_slug and page_slug == doc_slug -%}
+ {%- assign active = 'active bd-sidenav-active' -%}
+ {%- endif -%}
+
+ <li{% unless active == nil %} class="{{ active }}"{% endunless %}>
+ <a href="{{ site.baseurl }}/docs/{{ site.docs_version }}/{{ 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>