<?php
/**
 * @package WordPress
 * @subpackage coe
 */
if ( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 
?>

<?php
	global $coe_options;
	$sidebar_position = ( $coe_options['blog_sidebar'] == 'left' ) ? 'grid_8 pull_16 sidebar-box' : 'grid_8';
?>

	<div id="sidebar" class="<?php echo $sidebar_position; ?>">
            <div id="sidebarSubnav">
<?php           coe_sidebar_top(); ?>

<?php		// Widgetized sidebar
		if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('BlogSidebar') ) : ?>

		    	<div class="custom-formatting">
			    <h3><?php esc_html_e('About This Sidebar', 'coe'); ?></h3>
			    <ul>
				<?php _e("To edit this sidebar, go to admin backend's <strong><em>Appearance -> Widgets</em></strong> and place widgets into the <strong><em>BlogSidebar</em></strong> Widget Area", 'coe'); ?>
			    </ul>
			</div>

<?php
		endif; ?>
                
<?php           coe_sidebar_bottom(); ?>
	    </div>
	</div><!-- end sidebar -->




