sidebar.php 523 B

123456789101112131415161718192021
  1. <div id="sidebar1" class="sidebar m-all d-2of7 last-col cf" role="complementary">
  2. <?php if ( is_active_sidebar( 'sidebar1' ) ) : ?>
  3. <?php dynamic_sidebar( 'sidebar1' ); ?>
  4. <?php else : ?>
  5. <?php
  6. /*
  7. * This content shows up if there are no widgets defined in the backend.
  8. */
  9. ?>
  10. <div class="no-widgets">
  11. <p><?php _e( 'This is a widget ready area. Add some and they will appear here.', 'bonestheme' ); ?></p>
  12. </div>
  13. <?php endif; ?>
  14. </div>