layout |
---|
default |
{%- assign categories = site.directory_categories | sort_natural -%}
{%- for category in categories -%}
{%- for page in site.pages -%}
{%- if page.dir contains "/t/" and page.category == category -%}
{%- endif -%}
{%- endfor -%}
{%- endfor -%}
{%- assign omit_pages = "t/13.md, t/14.md" | split: ", " -%}
{%- for page in site.pages -%}
{%- if page.dir contains "/t/" -%}
{%- if page.category == null -%}
{%- unless omit_pages contains page.path -%}
{%- endunless -%}
{%- endif -%}
{%- endif -%}
{%- endfor -%}