<?php
/**
* The sidebar containing the main widget area.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Athena
*/
if (!is_active_sidebar('sidebar-right')) {
return;
}
?>
<div class="col-sm-3" id="athena-sidebar">
<div id="secondary" class="widget-area" role="complementary">
<?php dynamic_sidebar('sidebar-right'); ?>
</div><!-- #secondary -->
</div>