-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
25 lines (24 loc) · 1012 Bytes
/
sidebar.php
File metadata and controls
25 lines (24 loc) · 1012 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
<?php
/**
* The first/left sidebar widgetized area.
*
* If no active widgets in sidebar, default login widget will appear.
*
* @since 1.0.0
*/
?>
<div id="secondary" <?php bavotasan_sidebar_class(); ?> role="complementary">
<?php if ( ! dynamic_sidebar( 'sidebar' ) ) : ?>
<aside id="meta" class="widget">
<h3 class="widget-title"><?php _e( 'Default Widget', 'arcade' ); ?></h3>
<p><?php printf( __( 'This is just a default widget. It\'ll disappear as soon as you add your own widgets on the %sWidgets admin page%s.', 'arcade' ), '<a href="' . admin_url( 'widgets.php' ) . '">', '</a>' ); ?></p>
<p><?php _e( 'Below is an example of an unordered list.', 'arcade' ); ?></p>
<ul>
<li><?php _e( 'List item one', 'arcade' ); ?></li>
<li><?php _e( 'List item two', 'arcade' ); ?></li>
<li><?php _e( 'List item three', 'arcade' ); ?></li>
<li><?php _e( 'List item four', 'arcade' ); ?></li>
</ul>
</aside>
<?php endif; ?>
</div><!-- #secondary.widget-area -->