Here is what the blogoverview template file looks like. Please help if you can. Thanks again, Jerome
<?php
/*
Template Name: Blog Overview
*/
global $avia_config, $more;
$avia_config['new_query'] = array( "paged" => get_query_var( 'paged' ), "posts_per_page"=>get_option('posts_per_page') ) ;
/*
* get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
*/
get_header();
?>
<!-- ####### MAIN CONTAINER ####### -->
<div class='container_wrap' id='main'>
<div class='container'>
<div id='template-blog' class='content grid9 first'>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
$more = 0;
get_template_part( 'includes/loop', 'index' );
?>
<!--end content-->
</div>
<?php
//get the sidebar
$avia_config['currently_viewing'] = 'blog';
get_sidebar();
?>
</div><!--end container-->
</div>
<!-- ####### END MAIN CONTAINER ####### -->
<?php get_footer(); ?>