console.log('PixelYourSite Free version 11.2.0.5');
var pysFacebookRest = {"restApiUrl":"https://awakenpittsburgh.org/wp-json/pys-facebook/v1/event","debug":""}; //# sourceURL=jquery-core-js-extra
https://awakenpittsburgh.org/wp-includes/js/jquery/jquery.min.js
https://awakenpittsburgh.org/wp-includes/js/jquery/jquery-migrate.min.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/common/build/js/tribe-common.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/breakpoints.js
var breeze_prefetch = {"local_url":"https://awakenpittsburgh.org","ignore_remote_prefetch":"1","ignore_list":["http://awakenpittsburgh.org/","http://awakenpittsburgh.org/support/","http://awakenpittsburgh.org/about/team/","http://awakenpittsburgh.org/why/","http://awakenpittsburgh.org/programs/teams-organizations/public-safety/","wp-admin","wp-login.php"]}; //# sourceURL=breeze-prefetch-js-extra
https://awakenpittsburgh.org/wp-content/plugins/breeze/assets/js/js-front-end/breeze-prefetch-links.min.js
Skip to content
  • Why Awaken
    • Why Mindfulness
    • Research
    • Impact
  • Services
    • Teams & Organizations
    • Family & Communities
    • Individuals
    • Trauma Healing
    • Speaking
  • Calendar
  • About Us
    • Our Story
    • Our Team
  • Ripple Effect
    • Mindfulness Guide
    • Guided Meditations
    • Blog
    • Newsletter
    • The Ripple Effect Podcast
  • Contact
  • Support Us
UPCOMING EVENTS
Awaken Pittsburgh
  • Why Awaken
    • Why Mindfulness
    • Research Focus
    • Community Impact
    • Partner With Us
    • Matching Gift
  • Services
    • Teams & Organizations
    • Families & Communities
    • Individuals
    • Trauma Healing
    • Speaking
  • Calendar
  • About Us
    • Our Story
    • Our Team
  • Ripple Effect
    • Mindfulness Guide
    • Guided Meditations
    • Blog
    • Newsletter
    • The Ripple Effect Podcast
  • Contact
support us
Awaken Pittsburgh

Events

0 events found.

Events for May 17, 2026

Notice
No events scheduled for May 17, 2026. Jump to the next upcoming events.
Notice
No events scheduled for May 17, 2026. Jump to the next upcoming events.

Events Search and Views Navigation

Event Views Navigation

  • List
  • Month
  • Day
Today
  • Previous Day
  • Next Day
  • Google Calendar
  • iCalendar
  • Outlook 365
  • Outlook Live
  • Export .ics file
  • Export Outlook .ics file
( function () { var completed = false;function initBreakpoints() { if ( completed ) { // This was fired already and completed no need to attach to the event listener. document.removeEventListener( 'DOMContentLoaded', initBreakpoints ); return; }if ( 'undefined' === typeof window.tribe ) { return; }if ( 'undefined' === typeof window.tribe.events ) { return; }if ( 'undefined' === typeof window.tribe.events.views ) { return; }if ( 'undefined' === typeof window.tribe.events.views.breakpoints ) { return; }if ( 'function' !== typeof (window.tribe.events.views.breakpoints.setup) ) { return; }var container = document.querySelectorAll( '[data-view-breakpoint-pointer="808279ac-5211-4969-ba4b-b26710562acf"]' ); if ( ! container ) { return; }window.tribe.events.views.breakpoints.setup( container ); completed = true; // This was fired already and completed no need to attach to the event listener. document.removeEventListener( 'DOMContentLoaded', initBreakpoints ); }// Try to init the breakpoints right away. initBreakpoints(); document.addEventListener( 'DOMContentLoaded', initBreakpoints ); })();
jQuery(function(){ // Images //begin updates to alternate text, title, and aria-label if needed only var imgCnt = 1; jQuery('img').each(function () { var curAlt = jQuery(this).attr('alt'); var curTitle = jQuery(this).attr('title'); var curAriaLbl = jQuery(this).attr('aria-label'); var curImgPrnts = jQuery(this).parents().map(function () { return this.tagName; }) .get() .join(', '); //no alt text or empty alt text or undefined if (!curAlt || curAlt === '' || curAlt === 'undefined') { jQuery(this).attr('alt', ''); //decorative if (curImgPrnts.includes('A,') || curImgPrnts.includes(' A ')) { jQuery(this).attr('alt', 'Image link #' + imgCnt); if (!curTitle || curTitle === '' || curTitle === 'undefined') { } else { jQuery(this).attr('title', curTitle); } if (!curAriaLbl || curAriaLbl === '' || curAriaLbl === 'undefined') { if (!curTitle || curTitle === '' || curTitle === 'undefined') { } else { jQuery(this).attr('aria-label', curTitle); } } else { /*add it back in*/ jQuery(this).attr('aria-label', curAriaLbl); } } else { //if empty then should not contain title or aria-label jQuery(this).removeAttr('aria-label'); jQuery(this).removeAttr('title'); } } else { //alt present so we should leave alt alone jQuery(this).attr('alt', curAlt); //if title present add an aria-label as well if (!curTitle || curTitle === '' || curTitle === 'undefined') { } else { /*Add title back in*/ jQuery(this).attr('title', curTitle); //first check to make sure it doesn't already have aria-label if (!curAriaLbl || curAriaLbl === '' || curAriaLbl === 'undefined') { jQuery(this).attr('aria-label', curTitle); } else { /*add it back in*/ jQuery(this).attr('aria-label', curAriaLbl); } } } imgCnt++; }); //end updates to alternate text, title, and aria-label if needed only var h1Cnt = 0; jQuery("h1").each(function () { h1Cnt++; }); if(h1Cnt == 0){ jQuery("#main").prepend('<div role="region" aria-label="Main Heading"><h1 class="sr-only">' + jQuery("title").html() + '</h1></div>'); } /*shortcut not contained within previous navigation container - setup for unique landmark*/ jQuery("#wp-toolbar").removeAttr("role").removeAttr("aria-label"); jQuery("#wpadminbar").attr("role", "navigation"); jQuery("#wpadminbar").attr("aria-label", "Toolbar"); var navCnt = 1; jQuery("nav").each( function(){ jQuery(this).attr("aria-label","Navigation Menu #"+navCnt); navCnt++; }); //location map jQuery('iframe').each(function(){ var curTarget = String(jQuery(this).attr('src')); if(curTarget.includes('google') && curTarget.includes('map')){ jQuery(this).attr('aria-label','Google Map'); } }); //remove role from ul, li, buttons, and a = you can't change the default purpose on these without changing all the others setTimeout(function(){ jQuery('#menu-desktop-menu').removeAttr('role'); jQuery('#menu-desktop-menu').find('a').each(function(){ var curRole = String(jQuery(this).attr('role')); if(curRole.includes('menuitem')){ jQuery(this).removeAttr('role'); } }); jQuery('#menu-desktop-menu').find('button').each(function(){ var curRole = String(jQuery(this).attr('role')); if(curRole.includes('menuitem')){ jQuery(this).removeAttr('role'); } }); jQuery('#menu-desktop-menu').find('li').each(function(){ var curRole = String(jQuery(this).attr('role')); if(curRole.includes('none')){ jQuery(this).removeAttr('role'); } }); },1200); //fix discernible links var curCnt = 1; jQuery('body').find('a').each(function(){ var curContent = String(jQuery(this).html()); var curhref = String(jQuery(this).attr('href')); if(curContent === ''){ if(curhref === ''){ jQuery(this).append('<span class="sr-only">Link #'+curCnt+'</span>'); }else{ jQuery(this).append('<span class="sr-only">Link: '+curhref+'</span>'); } } }); setTimeout(function(){ jQuery('a[data-brz-link-type="external"]').each(function(){ jQuery(this).attr('aria-label','opens in new window or tab').attr('role','button'); }); }, 1500); });
( function ( body ) { 'use strict'; body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' ); } )( document.body );
var tribe_l10n_datatables = {"aria":{"sort_ascending":": activate to sort column ascending","sort_descending":": activate to sort column descending"},"length_menu":"Show _MENU_ entries","empty_table":"No data available in table","info":"Showing _START_ to _END_ of _TOTAL_ entries","info_empty":"Showing 0 to 0 of 0 entries","info_filtered":"(filtered from _MAX_ total entries)","zero_records":"No matching records found","search":"Search:","all_selected_text":"All items on this page were selected. ","select_all_link":"Select all pages","clear_selection":"Clear Selection.","pagination":{"all":"All","next":"Next","previous":"Previous"},"select":{"rows":{"0":"","_":": Selected %d rows","1":": Selected 1 row"}},"datepicker":{"dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesMin":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Prev","currentText":"Today","closeText":"Done","today":"Today","clear":"Clear"}};
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/viewport.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/accordion.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/events-bar.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/month-mobile-events.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/view-selector.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/ical-links.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/navigation-scroll.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/multiday-events.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/month-grid.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/common/vendor/tooltipster/tooltipster.bundle.min.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/tooltip.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/vendor/bootstrap-datepicker/js/bootstrap-datepicker.min.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/datepicker.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/events-bar-inputs.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/common/build/js/user-agent.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/datepicker-pro.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/vendor/swiper/dist/js/swiper.min.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/map-no-venue-modal.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/map-provider-google-maps.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/map-events.js
https://awakenpittsburgh.org/wp-includes/js/jquery/ui/core.min.js
https://awakenpittsburgh.org/wp-includes/js/jquery/ui/mouse.min.js
https://awakenpittsburgh.org/wp-includes/js/jquery/ui/draggable.min.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/vendor/nanoscroller/jquery.nanoscroller.min.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/map-events-scroller.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/week-event-link.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/week-multiday-toggle.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/week-day-selector.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/week-grid-scroller.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/tooltip-pro.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/toggle-recurrence.js
https://awakenpittsburgh.org/wp-content/plugins/events-calendar-pro/build/js/views/multiday-events-pro.js
var ct_localizations = {"ajax_url":"https://awakenpittsburgh.org/wp-admin/admin-ajax.php","public_url":"https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/","rest_url":"https://awakenpittsburgh.org/wp-json/","search_url":"https://awakenpittsburgh.org/search/QUERY_STRING/","show_more_text":"Show more","more_text":"More","search_live_results":"Search results","search_live_no_results":"No results","search_live_no_result":"No results","search_live_one_result":"You got %s result. Please press Tab to select it.","search_live_many_results":"You got %s results. Please press Tab to select one.","search_live_stock_status_texts":{"instock":"In stock","outofstock":"Out of stock"},"clipboard_copied":"Copied!","clipboard_failed":"Failed to Copy","expand_submenu":"Expand dropdown menu","collapse_submenu":"Collapse dropdown menu","dynamic_js_chunks":[{"id":"blocksy_pro_micro_popups","selector":".ct-popup","url":"https://awakenpittsburgh.org/wp-content/plugins/blocksy-companion-pro/framework/premium/static/bundle/micro-popups.js?ver=2.1.42","version":"2.1.42"},{"id":"blocksy_sticky_header","selector":"header [data-sticky]","url":"https://awakenpittsburgh.org/wp-content/plugins/blocksy-companion-pro/static/bundle/sticky.js?ver=2.1.42","version":"2.1.42"}],"dynamic_styles":{"lazy_load":"https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/non-critical-styles.min.css?ver=2.1.42","search_lazy":"https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/non-critical-search-styles.min.css?ver=2.1.42","back_to_top":"https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/back-to-top.min.css?ver=2.1.42"},"dynamic_styles_selectors":[{"selector":".ct-header-cart, #woo-cart-panel","url":"https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/cart-header-element-lazy.min.css?ver=2.1.42"},{"selector":".flexy","url":"https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/flexy.min.css?ver=2.1.42"},{"selector":".ct-pagination","url":"https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/pagination.min.css?ver=2.1.42"},{"selector":".ct-media-container[data-media-id], .ct-dynamic-media[data-media-id]","url":"https://awakenpittsburgh.org/wp-content/plugins/blocksy-companion-pro/framework/premium/static/bundle/video-lazy.min.css?ver=2.1.42"},{"selector":"#account-modal","url":"https://awakenpittsburgh.org/wp-content/plugins/blocksy-companion-pro/static/bundle/header-account-modal-lazy.min.css?ver=2.1.42"},{"selector":".ct-header-account","url":"https://awakenpittsburgh.org/wp-content/plugins/blocksy-companion-pro/static/bundle/header-account-dropdown-lazy.min.css?ver=2.1.42"}],"login_generic_error_msg":"An unexpected error occurred. Please try again later."}; //# sourceURL=ct-scripts-js-extra
https://awakenpittsburgh.org/wp-content/themes/blocksy/static/bundle/main.js
https://awakenpittsburgh.org/wp-content/plugins/pixelyoursite/dist/scripts/jquery.bind-first-0.2.3.min.js
https://awakenpittsburgh.org/wp-content/plugins/pixelyoursite/dist/scripts/js.cookie-2.1.3.min.js
https://awakenpittsburgh.org/wp-content/plugins/pixelyoursite/dist/scripts/tld.min.js
var pysOptions = {"staticEvents":{"facebook":{"init_event":[{"delay":0,"type":"static","ajaxFire":false,"name":"PageView","pixelIds":["3681554928727338"],"eventID":"6d07cf49-550b-49b3-b8c3-11e25b81b293","params":{"page_title":"Archives: Events","post_type":"archive","plugin":"PixelYourSite","user_role":"guest","event_url":"awakenpittsburgh.org/events/today/"},"e_id":"init_event","ids":[],"hasTimeWindow":false,"timeWindow":0,"woo_order":"","edd_order":""}]}},"dynamicEvents":[],"triggerEvents":[],"triggerEventTypes":[],"facebook":{"pixelIds":["3681554928727338"],"advancedMatching":{"external_id":"feeaaefbdcebeafdacd"},"advancedMatchingEnabled":true,"removeMetadata":false,"wooVariableAsSimple":false,"serverApiEnabled":true,"send_external_id":null,"enabled_medical":false,"do_not_track_medical_param":["event_url","post_title","page_title","landing_page","content_name","categories","category_name","tags"],"meta_ldu":false},"debug":"","siteUrl":"https://awakenpittsburgh.org","ajaxUrl":"https://awakenpittsburgh.org/wp-admin/admin-ajax.php","ajax_event":"e68e0345e7","enable_remove_download_url_param":"1","cookie_duration":"7","last_visit_duration":"60","enable_success_send_form":"","ajaxForServerEvent":"1","ajaxForServerStaticEvent":"1","useSendBeacon":"1","send_external_id":"1","external_id_expire":"180","track_cookie_for_subdomains":"1","google_consent_mode":"1","gdpr":{"ajax_enabled":false,"all_disabled_by_api":false,"facebook_disabled_by_api":false,"analytics_disabled_by_api":false,"google_ads_disabled_by_api":false,"pinterest_disabled_by_api":false,"bing_disabled_by_api":false,"reddit_disabled_by_api":false,"externalID_disabled_by_api":false,"facebook_prior_consent_enabled":true,"analytics_prior_consent_enabled":true,"google_ads_prior_consent_enabled":null,"pinterest_prior_consent_enabled":true,"bing_prior_consent_enabled":true,"cookiebot_integration_enabled":false,"cookiebot_facebook_consent_category":"marketing","cookiebot_analytics_consent_category":"statistics","cookiebot_tiktok_consent_category":"marketing","cookiebot_google_ads_consent_category":"marketing","cookiebot_pinterest_consent_category":"marketing","cookiebot_bing_consent_category":"marketing","consent_magic_integration_enabled":false,"real_cookie_banner_integration_enabled":false,"cookie_notice_integration_enabled":false,"cookie_law_info_integration_enabled":false,"analytics_storage":{"enabled":true,"value":"granted","filter":false},"ad_storage":{"enabled":true,"value":"granted","filter":false},"ad_user_data":{"enabled":true,"value":"granted","filter":false},"ad_personalization":{"enabled":true,"value":"granted","filter":false}},"cookie":{"disabled_all_cookie":false,"disabled_start_session_cookie":false,"disabled_advanced_form_data_cookie":false,"disabled_landing_page_cookie":false,"disabled_first_visit_cookie":false,"disabled_trafficsource_cookie":false,"disabled_utmTerms_cookie":false,"disabled_utmId_cookie":false},"tracking_analytics":{"TrafficLanding":"http://undefined","TrafficUtms":[],"TrafficUtmsId":[]},"GATags":{"ga_datalayer_type":"default","ga_datalayer_name":"dataLayerPYS"},"woo":{"enabled":false},"edd":{"enabled":false},"cache_bypass":"1779052334"}; //# sourceURL=pys-js-extra
https://awakenpittsburgh.org/wp-content/plugins/pixelyoursite/dist/scripts/public.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/common/build/js/utils/query-string.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/common/build/js/underscore-before.js
https://awakenpittsburgh.org/wp-includes/js/underscore.min.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/common/build/js/underscore-after.js
https://awakenpittsburgh.org/wp-includes/js/dist/hooks.min.js
https://awakenpittsburgh.org/wp-content/plugins/the-events-calendar/build/js/views/manager.js
window.addEventListener("DOMContentLoaded",(e=>{document.querySelectorAll('img[loading="lazy"]').forEach((e=>{e.getBoundingClientRect().top<=window.innerHeight&&(e.loading="eager")}))}));