blob: b4802e7263a396d8d065cc27ff45a3b46823bf7e (
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.sort_title | truncate: 1, ''"
  | sort: "name"
%}
{% include alphlist.html pages_by_letter = pages_by_letter %}
  |