{% comment %} Renders a NextGen Live subsection (e.g., Getting Started) by resolving: Live Streaming (top-level) → NextGen Live → section named page.title Relies on front matter: title (section name), description, parent: NextGen Live {% endcomment %} {% for top in site.data.navigation %} {% for nxt in top.docs %} {% if nxt.name == 'NextGen Live' %} {% for section in nxt.docs %} {% if section.name == page.title %}

{{ page.title }}

{{ page.description }}
{% endif %} {% endfor %} {% endif %} {% endfor %} {% endfor %}