-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
executable file
·45 lines (45 loc) · 2.13 KB
/
sidebar.php
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
36
37
38
39
40
41
42
43
44
45
<? if ( is_active_sidebar( 'about-page-officers' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'about-page-officers' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'home-page-intro' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'home-page-intro' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'aerial-social-media' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'aerial-social-media' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'mars-rover-social-media' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'mars-rover-social-media' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'underwater-social-media' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'underwater-social-media' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'footer-meeting-dates' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'footer-meeting-dates' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'mars-rover-meeting-times' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'mars-rover-meeting-times' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'aerial-meeting-times' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'aerial-meeting-times' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>
<? if ( is_active_sidebar( 'underwater-meeting-times' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<? dynamic_sidebar( 'underwater-meeting-times' ); ?>
</div><!-- #primary-sidebar -->
<? endif; ?>