sidebar.php 500 Bytes
Newer Older
John Punzalan's avatar
John Punzalan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!-- #sidebar -->
<aside id="sidebar" class="wow fadeIn">
	<header>
		<h2 class="hide"><?php _e('Sidebar', 'kalabera'); ?></h2>
	</header>

	<?php if ( is_active_sidebar( 'sidebar1' ) ) : ?>

		<?php dynamic_sidebar( 'sidebar1' ); ?>

	<?php else : ?>

		<div class="no-widgets">
			<h3><?php _e('No Widgets', 'kalabera'); ?></h3>
			<p><?php _e( 'This is a widget ready area. Add some and they will appear here.', 'kalabera' );  ?></p>
		</div>

	<?php endif; ?>

</aside> <!-- end of: #sidebar -->