You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
776 B

  1. <?php flat_hook_sidebar_before(); ?>
  2. <div id="main-sidebar" class="widget-area" role="complementary">
  3. <?php flat_hook_sidebar_top(); ?>
  4. <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
  5. <aside id="archives" class="widget">
  6. <h3 class="widget-title"><?php _e( 'Archives', 'flat' ); ?></h3>
  7. <ul>
  8. <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
  9. </ul>
  10. </aside>
  11. <aside id="meta" class="widget">
  12. <h3 class="widget-title"><?php _e( 'Meta', 'flat' ); ?></h3>
  13. <ul>
  14. <?php wp_register(); ?>
  15. <li><?php wp_loginout(); ?></li>
  16. <?php wp_meta(); ?>
  17. </ul>
  18. </aside>
  19. <?php endif; ?>
  20. <?php flat_hook_sidebar_bottom(); ?>
  21. </div>
  22. <?php flat_hook_sidebar_after(); ?>