1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00
Files
help/_layouts/category.html
2017-08-24 13:21:41 -04:00

26 lines
771 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="{{article.url}}">{{article.title}}</a></li>
{% endif %}
{% endfor %}
</ol>
</div>
<div class="col-md-4">
{% include contact.html %}
</div>
</div>
</div>