File: //old_home_backup/busesatwork.co.uk/public_html/wp-content/themes/tortuga/sidebar.php
<?php
/**
* The sidebar containing the main widget area.
*
* @package Tortuga
*/
?>
<section id="secondary" class="sidebar widget-area clearfix" role="complementary">
<?php // Check if Sidebar has widgets.
if ( is_active_sidebar( 'sidebar' ) ) :
dynamic_sidebar( 'sidebar' );
// Show hint where to add widgets.
else : ?>
<aside class="widget clearfix">
<div class="widget-header"><h3 class="widget-title"><?php esc_html_e( 'Sidebar', 'tortuga' ); ?></h3></div>
<div class="textwidget">
<p><?php esc_html_e( 'Please go to Appearance → Widgets and add some widgets to your sidebar.', 'tortuga' ); ?></p>
</div>
</aside>
<?php endif; ?>
</section><!-- #secondary -->