"block_one"); } if ($layout): foreach ($layout as $key=>$value) { switch($key) { case 'block_one': // Page Content if(is_home()) { get_template_part('templates/home/blog', 'main-loop'); } else { /** * @hooked ascend_page_content_wrap_before - 10 * @hooked ascend_page_content - 20 * @hooked ascend_page_content_wrap_after - 30 */ do_action('kadence_page_content'); } break; case 'block_two': // latest posts get_template_part('templates/home/blog', 'home'); break; case 'block_three': // product carousel if (class_exists('woocommerce')) { get_template_part('templates/home/product', 'carousel'); } break; case 'block_four': // image menu get_template_part('templates/home/image', 'menu'); break; case 'block_five': // Icon menu get_template_part('templates/home/icon', 'menu'); break; case 'block_six': // portfolio carousel get_template_part('templates/home/portfolio', 'carousel'); break; case 'block_seven': // portfolio main loop get_template_part('templates/home/portfolio', 'full'); break; } } endif; ?>