forked from obenland/the-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
35 lines (30 loc) · 929 Bytes
/
sidebar.php
File metadata and controls
35 lines (30 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/** sidebar.php
*
* @author Konstantin Obenland
* @package WordPress
* @subpackage The Bootstrap
* @since 1.0.0 - 05.02.2012
*/
?>
<section id="secondary" class="widget-area span4" role="complementary">
<?php if ( ! dynamic_sidebar( 'main' ) ) : ?>
<aside id="archives" class="widget well">
<h2 class="widget-title"><?php _e( 'Archives', 'the-bootstrap' ); ?></h2>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</aside>
<aside id="meta" class="widget well">
<h2 class="widget-title"><?php _e( 'Meta', 'the-bootstrap' ); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</aside>
<?php endif; // end sidebar widget area ?>
</section><!-- #secondary .widget-area -->
<?php
/* End of file sidebar.php */
/* Location: ./wp-content/themes/the-bootstrap/sidebar.php */