mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
* jekyll redirect from * Organizations rev (#262) * Organizations revisions initial commit. * API doc updates * Fix absolute link causing build failure. * Add import to org article, and downstream order changes. * Bitwarden 101 videos: 1st steps toward proliferating these throughout /help. * Added 'Create Your Account' article, which references B101 Videos. * About SSO redirect & promote importing for orgs up the list * Create Org FAQs & trim Feature FAQs accordingly. * Image for Org FAQs * Move 'About the Business Portal' to Orgs category, and re-order accordingly. * Final edits. * Dchoi/bootstrap upgrade (#264) * bootstrap 4 upgrade and cleanup update gulp tasks * bootstrap package updates * renaming file convention * general outline of help outline * bitwarden help cleanup * article cleanup * article general styling complete * bootstrap help page upgrades * sidebar updates * Dchoi/bootstrap upgrade (#267) * bootstrap 4 upgrade and cleanup update gulp tasks * bootstrap package updates * renaming file convention * general outline of help outline * bitwarden help cleanup * article cleanup * article general styling complete * bootstrap help page upgrades * sidebar updates * toc dynamic and more updates * fix callout conditions * sidebar collapse functionality added * sidebar header toggle functionality * sidebar article fixes * Update sidebar.html Fix sidebar Release Notes link. * Update releasenotes.md Remove unnecessary category tag. * Delete release-notes.md Remove unnecessary category. * Update why-choose-bitwarden-for-your-team.md Test table image differentiation * Update why-choose-bitwarden-for-your-team.md Second image differentiation test * removed links from category breadcrumb and replaced with badges Co-authored-by: fred_the_tech_writer <69817454+fschillingeriv@users.noreply.github.com>
45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
{% assign sorted_articles = site.articles | sort: 'order' %}
|
|
|
|
<nav class="bd-links collapse show" id="bd-docs-nav" aria-label="Main navigation">
|
|
<div class="bd-toc-item d-none d-sm-none d-md-block">
|
|
<a class="bd-toc-link" href="/help/">
|
|
Help Center
|
|
</a>
|
|
</div>
|
|
<div class="bd-toc-item">
|
|
<a class="bd-toc-link" href="{{site.baseurl}}/article/releasenotes">
|
|
Release Notes
|
|
</a>
|
|
</div>
|
|
|
|
{% for category in site.categories %}
|
|
{% if category.hidden != true %}
|
|
{% assign catFilename = category.path | filename %}
|
|
|
|
{% if page.categories contains catFilename or page.url contains catFilename %}
|
|
{% assign activeCategoryPage = true %}
|
|
{% else %}
|
|
{% assign activeCategoryPage = false %}
|
|
{% endif %}
|
|
|
|
<div class="bd-toc-item">
|
|
<a class="bd-toc-link" data-toggle="collapse" data-target="#{{catFilename}}" role="button" {% if activeCategoryPage %}aria-expanded="true"{% else %}aria-expanded="false"{% endif %} aria-controls="{{catFilename}}" aria-label="Toggle {{category.title}}">
|
|
{{category.title}}
|
|
<small class="ml-auto"><i class="fa fa-chevron-down"></i></small>
|
|
</a>
|
|
<ul {% if activeCategoryPage %}class="nav bd-sidenav collapse show"{% else %}class="nav bd-sidenav collapse"{% endif %} id="{{catFilename}}">
|
|
{% for article in sorted_articles %}
|
|
{% if article.categories contains catFilename and article.hidden != true %}
|
|
<li {% if page.url contains article.url %}class="active"{% endif %}>
|
|
<a href="{{site.baseurl}}{{article.url}}">{{article.title}}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
</nav>
|