Live Blog: Leadership Conference #EqFed19

The 22nd annual gathering of the Leadership Conference is here, who’s ready? Shortly, Equality Federation and Fairness Campaign will co-host over 200+ LGBTQ state and national movement leaders in Louisville, KY [press release].

May 18, 2026
PRESS RELEASE: Equality Federation Welcomes 200+ LGBTQ Leaders For Leadership Conference 2019

July 17-20th, Equality Federation and Fairness Campaign will co-host the 22nd annual Leadership Conference in Louisville, Kentucky. The conference is the premier gathering of LGBTQ movement leaders focusing on the crucial work of winning equality in state legislatures and local communities across the country.

May 18, 2026
Here's Why We Celebrate Pride Month

This year’s Pride Month marks the 49th anniversary of Pride, and the 50th anniversary of the Stonewall Riots. The nearly week-long protest took place in June 1969 in response to ongoing police raids at gay bars and clubs, and is now what most people consider to be the catalyst for the gay rights movement.

May 18, 2026
/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });