<?php include( TEMPLATEPATH . '/admin/admin-init.php' ); ?>
<?php get_header(); ?>
<?php if ($opn_display_featured) { ?>
<?php // If this is the homepage then get the featured posts section
if ( !$paged ) include ( TEMPLATEPATH . '/includes/featured-posts.php' );
?>
<?php // Exclude the 5 featured posts from the loop for SEO purposes
$exclude = get_option('opn_exclude_featured_posts');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array('post__not_in' => $exclude, 'paged'=> $paged );
query_posts($args);
?>
<?php } ?>
<div id="main">
<?php // Include the WordPress loop file
include ( TEMPLATEPATH . '/includes/loop.php' );
?>
</div><!-- /main -->
<div id="sidebar">
<?php dynamic_sidebar('sidebar'); ?>
</div><!--sidebar-->
<?php get_footer(); ?>