1
0
mirror of https://github.com/bitwarden/help synced 2025-12-15 15:53:53 +00:00
Files
help/_layouts/category.html
fred_the_tech_writer 2146aa8009 Login with SSO Rev 1 (#233)
* Login with SSO Rev Cycle 1

* Login with SSO Rev Cycle 1 Spot Check
2020-10-20 09:50:44 -04:00

43 lines
1.5 KiB
HTML

---
layout: default
---
{% assign sorted_articles = site.articles | sort: 'order' %}
<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 class="panel panel-default articles" style="margin-bottom: 0;">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-list-alt"></i> Categories</h3>
</div>
<div class="panel-body small">
<ul>
{% for category in site.categories %}
{% if category.hidden != true %}
<li>
<a href="{{site.baseurl}}{{category.url}}">{{category.title}}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</div>