1
0
mirror of https://github.com/bitwarden/help synced 2026-01-06 02:23:22 +00:00

callout styling. note and warning tags. sorting

This commit is contained in:
Kyle Spearrin
2017-05-23 21:58:58 -04:00
parent 77face8570
commit be037a36cd
14 changed files with 131 additions and 26 deletions

View File

@@ -1,6 +1,7 @@
---
layout: default
---
{% assign sorted_articles = site.articles | sort: 'title' %}
<div class="container">
<h1 class="page-header">
@@ -10,7 +11,7 @@ layout: default
<div class="row">
<div class="col-md-8 articles">
<ol>
{% for article in site.articles %}
{% for article in sorted_articles %}
{% if article.categories contains page.title %}
<li><a href="{{article.url}}">{{article.title}}</a></li>
{% endif %}