Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 1.11 KB

sitemap.md

File metadata and controls

36 lines (31 loc) · 1.11 KB
layout title noindex
page
Sitemap
true

Navigation tree:

    {% assign pages_list = site.pages | sort: 'navigation' %} {% for node in pages_list %} {% if node.title != nil and node.navigation != nil and node.parent == nil %}
  • {{ node.short | default: node.title }} ({{node.navigation}}) {% if node.section != nil %}{% assign sub_list = site.pages | where: 'parent', node.section | sort: 'navigation' %} {% if sub_list %}{% endif %}{% endif %}
  • {% endif %} {% endfor %}

Missing:

    {% for node in pages_list %} {% if node.parent == nil and node.title != nil and node.parent == nil and node.navigation == nil and node.url != "/" and node != page %}
  • {{ node.short | default: node.title }} ({{node.navigation}})
  • {% endif %} {% endfor %}