The Education Committee met for a meeting via conference call on April 8, 2020. Topics discussed included:
- Training at area meetings & convention
- MACD Strategic Plan
- Poster contest
- Scholarships
- Rolling Rivers Trailers
- new committee members
- Press Kit
2020 0408 Education Committee Meeting notes
Related Posts
Two $750 Scholarships and one $500 Scholarship are available for Montana students—high school seniors or…
On December 9th, 2020 the Education Committee met for discussion of topics including: Scholarship Application…
The Education Committee met for a conference call on May 6, 2020. Topics discussed included:…
php
function my_custom_sidebar_display( $sidebar ) {
// Return a different sidebar for custom post type 'resolutions'
if ( is_singular( 'resolutions' ) || is_post_type_archive( 'resolutions' ) ) {
return 'resolutionssidebar';
}
// Return theme defined sidebar area
else {
return $sidebar;
}
}
add_filter( 'wpex_get_sidebar', 'my_custom_sidebar_display' ); ?>