-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
30 lines (28 loc) · 1.21 KB
/
archive.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
<?php
get_header(); ?>
<div class="wrapper" id="archive-wrapper">
<div class="container " id="content" tabindex="-1">
<div class="row">
<?php if ( get_theme_mod( 'show_left_sidebar' ) ) : ?>
<div class="col-md-4 widget-area" role="complementary" id="left-sidebar">
<?php if ( is_active_sidebar( 'left-sidebar' ) ) : ?>
<?php dynamic_sidebar( 'left-sidebar' ); ?>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="col-md-8 content-area" id="primary">
<main>
<?php get_template_part( 'loop-templates/content-archive' ); ?>
</main>
</div>
<?php if ( get_theme_mod( 'show_right_sidebar' ) ) : ?>
<div class="col-md-4 widget-area" role="complementary" id="right-sidebar">
<?php if ( is_active_sidebar( 'right-sidebar' ) ) : ?>
<?php dynamic_sidebar( 'right-sidebar' ); ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>