permalink | sitemap | ||
---|---|---|---|
/glossary/index.html |
|
{% assign something = "something" %}
{% assign allitems = "" | split:"" %} {% for item in site.glossary %} {% assign allitems = allitems | push: item %} {% if item.aka | size > 0 %} {% for aka in item.aka %} {% assign allitems = allitems | push: aka %} {% endfor %} {% endif %} {% endfor %}
-
{% assign allitems = allitems | sort: 'title' %}
{% for item in allitems %}
- {{ item.title }} — {{ item.oneliner }} {% endfor %}