summaryrefslogtreecommitdiff
path: root/source/_layouts/category.html
blob: 872c06cac9329f7af6b2fba1faf080b066de3256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: "default"
---

<h1>{{ page.title | smartify }}</h1>

<p>
This is an alphabetical list of the concepts in this category.
</p>

{% assign pages_by_letter = site.pages
  | where_exp: "item", "item.layout == 'concept'"
  | where_exp: "item", "item.categories contains page.title"
  | group_by_exp: "item", "item.title | truncate: 1, ''"
  | sort: "name"
%}
{% include alphlist.html pages_by_letter = pages_by_letter %}