+ $section['id'], + 'slug' => $section['slug'], + 'title' => $section['title'], + 'content' => $section['content'], + 'page_id' => $section['page_id'], + 'index' => $index, + ) + ); + + get_template_part( 'template-parts/section', 'generic' ); + } + + // Reset global post if it was altered. + wp_reset_postdata(); + } else { + // Fallback: show default page content if no menu sections are available. + if ( have_posts() ) { + while ( have_posts() ) { + the_post(); + get_template_part( 'template-parts/page/content', 'front-page' ); + } + } + } + ?> +