1. <?php
  2. /**
  3. * The right sidebar file. By default we show Archives and Meta
  4. * @package WPLOOK
  5. * @subpackage DailyPost
  6. * @since DailyPost 1.0
  7. */?>
  8. </div>
  9. <!--/contentcolumn-->
  10. </div>
  11. <!--/primary-->
  12.  
  13. <div id="secondary">
  14. <div id="secondary-margins">
  15. <header id="branding">
  16. <hgroup id="desktop-version">
  17. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> - <?php bloginfo('description'); ?>">
  18. <?php bloginfo('name'); ?>
  19. </a></h1>
  20. <h2 class="site-description">
  21. <?php bloginfo('description'); ?>
  22. </h2>
  23. </hgroup>
  24. </header>
  25. <nav>
  26. <?php wp_nav_menu( array('depth' => '3', 'theme_location' => 'primary' )); ?>
  27. </nav>
  28. <div class="widget-area">
  29. <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
  30. <aside id="archives" class="widget">
  31. <div class="widget-title">
  32. <h3>
  33. <?php _e( 'Archives', 'wplook' ); ?>
  34. </h3>
  35. <div class="right-corner"></div>
  36. </div>
  37. <ul>
  38. <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
  39. </ul>
  40. </aside>
  41. <aside id="meta" class="widget">
  42. <div class="widget-title">
  43. <h3>
  44. <?php _e( 'Meta', 'wplook' ); ?>
  45. </h3>
  46. <div class="right-corner"></div>
  47. </div>
  48. <ul>
  49. <?php wp_register(); ?>
  50. <li>
  51. <?php wp_loginout(); ?>
  52. </li>
  53. <?php wp_meta(); ?>
  54. </ul>
  55. </aside>
  56. <?php endif; // end sidebar widget area ?>
  57. </div>
  58. </div>