Back to blog

Orlando One Year Later: #HonorThemWithAction

As we mark a year from the Pulse massacre that claimed the lives of 49 people, Equality Federation stands with Equality Florida in their campaign to #HonorThemWithAction.

A single gunman killed 49 people, mostly LGBTQ people of color, last Pride Month during Latin night at Pulse, a gay nightclub. Most of us woke up to the horrifying news that members of our community had been killed.

“In the days that followed the Pulse massacre, shock and disbelief turned to grief and anger,” said Nadine Smith, Executive Director for Equality Florida. “At a moment when some sought to meet fear with fear and hate with hate, we saw a community pull together across difference and unite in a commitment to challenge bigotry and hatred, not nourish it. #HonorThemWithAction is a reminder and a pledge to uproot hatred and bigotry of all kinds and make the world a different, better, and more equal for all of us.

At this one year mark, Equality Federation stands with our member Equality Florida against hate and bigotry in all their forms. We remember the names and faces of the community members taken from us last year and pledge to continue to act in their honor.

As the one year mark of the Pulse massacre approaches, we ask you to join us once again to #HonorThemWithAction. Sign the pledge today and find out ways you can help end anti-LGBTQ bias and bigotry in your community.

/* ============================================= 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 */ }); });