'Instagram', 'facebook' => 'Facebook', 'youtube' => 'YouTube']; $socialIcons = ['instagram' => 'instagram', 'facebook' => 'facebook', 'youtube' => 'youtube']; // Hauptnav flach ausrollen (Unterpunkte wie Matchcenter einreihen), Anker-Links raus. $footerNav = []; foreach ($nav['main'] as $item) { if (str_starts_with($item['slug'], '#')) { continue; } $footerNav[] = ['label' => $item['label'], 'slug' => $item['slug']]; foreach ($item['children'] ?? [] as $child) { if ($child['slug'] !== $item['slug']) { // „Übersicht“ dupliziert nur den Eltern-Slug $footerNav[] = $child; } } } $footerNav = array_merge($footerNav, $nav['ctas'] ?? []); ?>