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>
56 lines
2.0 KiB
HTML
56 lines
2.0 KiB
HTML
---
|
|
layout: default
|
|
title: Help Center
|
|
---
|
|
{% assign sorted_articles = site.articles | sort: 'order' %}
|
|
|
|
<div class="container-fluid main-container">
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<div class="card card-popular mb-3">
|
|
<h4 class="card-header">
|
|
<i class="fa fa-star-o"></i> Popular Articles
|
|
</h4>
|
|
<div class="card-body">
|
|
<ul class="fa-ul">
|
|
{% for article in sorted_articles %}
|
|
{% if article.popular == true and article.hidden != true %}
|
|
<li>
|
|
<i class="fa-li fa fa-file-text-o"></i>
|
|
<a href="{{site.baseurl}}{{article.url}}">{{article.title}}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{% for category in site.categories %}
|
|
{% if category.hidden != true %}
|
|
<div class="card mb-3">
|
|
<h4 class="card-header">
|
|
<i class="fa fa-folder-open-o"></i> {{category.title}}
|
|
</h4>
|
|
<div class="card-body">
|
|
<ul class="fa-ul">
|
|
{% for article in sorted_articles %}
|
|
{% assign catFilename = category.path | filename %}
|
|
{% if article.categories contains catFilename and article.hidden != true %}
|
|
<li>
|
|
<i class="fa-li fa fa-file-text-o"></i>
|
|
<a href="{{site.baseurl}}{{article.url}}">{{article.title}}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="col-md-4">
|
|
{% include contact.html %}
|
|
</div>
|
|
</div>
|
|
</div>
|