Back to blog

Member Opportunity: Funding Queerly Giving Circle Requests Grant Proposals from Small LGBTQI Groups

For many of our movement’s state-based organizations, funding is always stretched too thin.

Groups continue to make progress, but there is always more work to be done and more support that can be provided.

Luckily, the Astraea Lesbian Foundation for Justice has announced a funding opportunity for many of our members.

Astraea is requesting proposals for the second year of the Funding Queerly Giving Circle. The Funding Queerly Giving Circle is a group of donors under 40 that was launched at Resource Generation's Making Money Make Change in 2012. Funding Queerly is partnering with Astraea, with support from Bolder Giving, to mobilize financial resources in support of organizing work by and for marginalized lesbian, gay, bisexual, transgender, queer and intersex (LGBTQI) communities.

Small LGBTQI community organizing groups (with budgets of $250,000 or less) led by and for communities of color, indigenous communities, low-income communities, and/or rural communities are especially encouraged to apply. The grants are for $10,000 to be put toward your organization's general operating support.

The deadline for proposals is Friday, November 14, 2014.

Click here to download the Funding Queerly funding guidelines and proposal form. Please direct inquiries about this RFP to: FundingQueerly@astraeafoundation.org.

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