-
Notifications
You must be signed in to change notification settings - Fork 1
/
archive.php
41 lines (39 loc) · 1.02 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
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* The template for displaying archive pages.
*
* @package TechEngage
*/
get_header(); ?>
<main id="content">
<div class="container">
<div class="row">
<div class="<?php if( !is_active_sidebar('sidebar-1')) { echo "col-lg-12 col-md-12"; } else { echo "col-lg-9 col-md-9"; } ?>">
<div class="content-container">
<div class="row">
<?php
if( have_posts() ) :
while( have_posts() ): the_post();
get_template_part('content','');
endwhile; endif;
?>
<div class="col-lg-12 text-center">
<?php
//Previous / next page navigation
the_posts_pagination( array(
'prev_text' => '<i class="fa fa-long-arrow-left"></i>',
'next_text' => '<i class="fa fa-long-arrow-right"></i>',
'screen_reader_text' => ' ',
) );
?>
</div>
</div>
</div>
</div>
<aside class="col-lg-3 col-md-3">
<?php get_sidebar(); ?>
</aside>
</div>
</div>
</main>
<?php get_footer(); ?>