LA GALAXY — Home Team
BRANDED FILM
/* =========================================
DESKTOP HEADER — Film / Photo / Contact
========================================= */
function buildDesktopHeaderPills() {
const headerNav =
document.querySelector('header nav') ||
document.querySelector('header .header-nav') ||
document.querySelector('header .site-navigation') ||
document.querySelector('header');
if (!headerNav) return;
if (document.querySelector('header .nav-cats')) return;
const pills = document.createElement('div');
pills.className = 'nav-cats';
pills.innerHTML = `
Film
Photo
Contact
`;
headerNav.insertBefore(pills, headerNav.firstElementChild);
/* Hide matching native Squarespace navigation links */
document.querySelectorAll(
'header nav a, header .header-nav a'
).forEach(a => {
if (a.closest('.nav-cats')) return;
const href = (a.getAttribute('href') || '')
.replace(/\/+$/,'')
.toLowerCase();
if (['/film','/photo','/contact'].includes(href)) {
const node = a.closest('li') || a;
node.style.display = 'none';
}
});
}