{{ page.type | replace: '-',' ' | capitalize }}
{%- assign list = '' | split: '|' %}
{%- for col in site.collections %}
{%- for doc in col.docs %}
{%- if doc.category %}
{%- for cat in doc.category %}
{%- if cat == page.type %}
{%- assign list = list | push: doc %}
{%- endif %}
{%- endfor %}
{%- endif %}
{%- endfor %}
{%- endfor %}
{%- if list.size > 0 %}
{%- assign list = list | sort: 'title' %}
{%- for doc in list -%}
{{ doc.title }}
{%- if doc.description -%}{{ doc.description }}
{%- elsif doc.brief -%}{{ doc.brief }}
{%- endif -%} {%- endfor %} {%- else %}This category contains no items.
{%- endif %}