if( basename( get_page_template() ) == "page-newhome.php" ){
wp_enqueue_style( 'bootstrap', get_stylesheet_directory_uri().'/templates/css/bootstrap.css');
wp_enqueue_style( 'lightslider', get_stylesheet_directory_uri().'/templates/css/lightslider.css');
wp_enqueue_style( 'vicwest', get_stylesheet_directory_uri().'/templates/css/vicwest-temp-styles.css',array(),$style_css);
wp_enqueue_script( 'bootstrap-js', get_stylesheet_directory_uri().'/templates/js/bootstrap.min.js',array('jquery'),'4.1.3', true );
wp_enqueue_script( 'lightslid-js', get_stylesheet_directory_uri().'/templates/js/lightslider.js',array('jquery'),'', true );
wp_enqueue_script( 'developer-js', get_stylesheet_directory_uri().'/templates/js/developer.js',array('jquery'),'', true );
}

Related