Sections
{% for section in page.sections %}
{{ section.title }}
{{ section.description }}
Modules
{% for module in section.modules %}
{% for site_module in site.modules %}
{% assign classy_name = site_module.url | replace: "/modules/", "" | replace: ".html", "" %}
{% if classy_name == module %}
{% if module contains "POLL-" %}
{% comment %} Do not render. This is a poll. {% endcomment %}
{% else %}
- {{ site_module.title }}
{% endif %}
{% else %}
{% comment %} Do not render. The module titles do not match. {% endcomment %}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}