mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
26 lines
787 B
HTML
26 lines
787 B
HTML
---
|
|
layout: default
|
|
---
|
|
{% assign sorted_articles = site.articles | sort: 'title' %}
|
|
|
|
<div class="container">
|
|
<h1 class="page-header">
|
|
<i class="fa fa-folder-open-o"></i>
|
|
{{page.title}}
|
|
</h1>
|
|
<div class="row">
|
|
<div class="col-md-8 articles">
|
|
<ol>
|
|
{% for article in sorted_articles %}
|
|
{% assign pageFilename = page.path | filename %}
|
|
{% if article.categories contains pageFilename and article.hidden != true %}
|
|
<li><a href="{{site.baseurl}}{{article.url}}">{{article.title}}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
<div class="col-md-4">
|
|
{% include contact.html %}
|
|
</div>
|
|
</div>
|
|
</div> |