<?php 
/*

Template Name: RC Summary Listings Page

*/
?>
<?php 
get_header();

include_once(ABSPATH.'wp-admin/includes/plugin.php'); 

//include(ABSPATH . '/includes/nav.php'); 

if (is_plugin_active( 'RealConnect/RealConnect.php' )) {
	echo '<div class="properties-template">';
	include_once(LoadPHPFile('/RealConnect/controllers/properties.php')); 
	$rc_listing_view_template_file_path = LoadPHPFile('/RealConnect/views/main/listings_view.php');
    wppage($rc_listing_view_template_file_path);
    echo '</div>';
}

get_footer('realconnect');





