summaryrefslogtreecommitdiff
path: root/source/know/concept/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'source/know/concept/index.md')
-rw-r--r--source/know/concept/index.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/source/know/concept/index.md b/source/know/concept/index.md
new file mode 100644
index 0000000..69b8ca9
--- /dev/null
+++ b/source/know/concept/index.md
@@ -0,0 +1,33 @@
+---
+title: "List of concepts"
+date: 2021-02-22
+layout: "default"
+---
+
+# List of concepts
+
+{% assign by_letter = site.pages
+ | where_exp: "item", "item.layout == 'concept'"
+ | group_by_exp: "item", "item.title | truncate: 1, ''"
+ | sort: "name"
+%}
+
+This is an alphabetical list of the concepts in this knowledge base.
+
+<div style="text-align: center;">
+&hyphen;
+{% for letter in by_letter %}
+<a href="#{{ letter.name }}">{{ letter.name }}</a>
+&hyphen;
+{% endfor %}
+</div>
+
+{% for letter in by_letter %}
+<h2 id="{{ letter.name }}">{{ letter.name }}</h2>
+<ul>
+ {% assign items = letter.items | sort: "title" %}
+ {% for item in items %}
+ <li><a href="{{ item.url }}">{{ item.title }}</a></li>
+ {% endfor %}
+</ul>
+{% endfor %}