mirror of
https://github.com/bitwarden/help
synced 2025-12-15 15:53:53 +00:00
24 lines
614 B
HTML
24 lines
614 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<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 site.articles %}
|
|
{% if article.categories contains page.title %}
|
|
<li><a href="{{article.url}}">{{article.title}}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
<div class="col-md-4">
|
|
{% include contact.html %}
|
|
</div>
|
|
</div>
|
|
</div> |