-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.php
More file actions
36 lines (22 loc) · 717 Bytes
/
Copy patharchive.php
File metadata and controls
36 lines (22 loc) · 717 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
36
<?php get_header(); ?>
<section class="section-content">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-8">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'content', get_post_format() );
endwhile;
?>
<?php
$pagination = TPL::pagination();
if( !empty($pagination) ){
echo "<div class='post-navigation mv10'>$pagination</div>";
}
?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<?php get_footer(); ?>