Fall 2024: Three Events on Gender, Race and Food Justice
In Fall 2024 we hosted three events. Details and phots from the events can be found below.
September 24, 2024: Community Meal: Exploring the Intersection of Identity and Cuisine; 12 – 3 p.m.; UNC
October 1, 2024: Weiss Lecture: Gender, Race, and Food Justice: A Conversation
Featuring Prof Psyche Williams-Forson and Prof Kyla Wazana Tompkins; moderated by Prof Kelly Alexander; 5 p.m.; UNC
October 4, 2024: Transplanting Traditions Farm Tour: Gender, Race, and Food Sovereignty in the Refugee Community; 3 – 5 p.m.; Transplanting Traditions Farm; Chapel Hill
`;
// Append the search bar container after the menu
menu.parentNode.insertBefore(searchBarContainer, menu.nextSibling);
// Create the search icon button and append it to the menu
var searchLi = document.createElement('li');
searchLi.className = 'menu-search-icon';
searchLi.innerHTML = `
`;
menu.appendChild(searchLi);
// Find the button and search bar container
var searchIconLink = document.getElementById('searchIconLink');
var searchBar = document.getElementById('searchBarContainer');
// Add click event listener to the search icon button
searchIconLink.addEventListener('click', function () {
var isExpanded = searchIconLink.getAttribute('aria-expanded') === 'true';
searchIconLink.setAttribute('aria-expanded', !isExpanded);
searchBar.style.display = isExpanded ? 'none' : 'flex';
searchIconLink.setAttribute('aria-label', isExpanded ? 'Open search bar' : 'Close search bar');
});
});
//-----------------------------------------
// Content Template: search-menu-item - end
//-----------------------------------------