<?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-slider.php';
include_once 'hp-pricing-table.php';
include_once 'hp-simple-pricing-table.php';
