{% assign section = include.section %}
{% if section.title or section.subtitle %}
{% assign title_is_not_empty = section.title | is_not_empty %} {% if title_is_not_empty %}

{{ section.title }}

{% endif %} {% assign subtitle_is_not_empty = section.subtitle | is_not_empty %} {% if subtitle_is_not_empty %}

{{ section.subtitle }}

{% endif %}
{% endif %}
{% for doc_section in site.data.guides_sections.sections %} {% assign doc_section_folder = site.data.guides_sections.root_folder | append: doc_section %} {% assign doc_section_page_path = doc_section_folder | append: '/index.md' %} {% assign doc_section_page = doc_section_page_path | get_page %}

{{ doc_section_page.title }}

{% assign excerpt_is_not_empty = doc_section_page.excerpt | is_not_empty %} {% if excerpt_is_not_empty %}

{{ doc_section_page.excerpt }}

{% endif %}
{% endfor %}