Back to blog

Power in Partnerships [REPORT]

Research shows that students of color and lesbian, gay, bisexual, transgender, and queer (LGBTQ) students are more likely to be disciplined than their White, non-LGBTQ peers. Students with intersectional identities, such as Black transgender youth or gay undocumented youth, are at even greater risk. Equality Federation is proud to join Advancement Project and Gay Straight Alliance Network to premier Power in Partnerships: Building Connections at the Intersections to End the School-to-Prison Pipeline, a new report intended to serve as a resource for LGBTQ and racial justice organizations interested in working together to address disparities in school discipline along lines of race, gender and sexual orientation.

Click here to download and view the report.

Get email alerts when new reports like this one are released:  

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