mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
15 lines
300 B
HTML
15 lines
300 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="container">
|
|
<h1>{{page.title}}</h1>
|
|
<ol>
|
|
{% for article in site.articles %}
|
|
{% if article.category == page.title %}
|
|
<li><a href="{{article.url}}">{{article.title}}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|