{% assign pages = site.pages | sort:"weight" %}
{% for p in pages %}
{% for pc in p.categories %}
{% if pc == cat %}
{% if page.permalink == p.url %}
{% if page.table-of-content != nil %}
{% for p in page.table-of-content %}
{{p}}
{% endfor %}
{% else %}
{{ p.title }}
{% endif %}
{%else%}
{{ p.title }}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}