<?php
function bw_render_acf_block( $block ) {
	$slug = str_replace( 'acf/', '', $block['name'] );
	if ( file_exists( get_stylesheet_directory() . "/acf-blocks/{$slug}/template.php" ) ) {
		include get_stylesheet_directory() . "/acf-blocks/{$slug}/template.php";
	}
}

include_once 'bw-post-grid.php';
