atticus-finch/sidebar.php
kjodle c9facfa199 Initial commit
Version 0.4; not ready for submission
2015-10-22 13:24:52 -04:00

15 lines
280 B
PHP

<?php
/**
* The sidebar containing the main widget area.
*
* @package Atticus Finch
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<div id="sidebar" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- end #sidebar -->