-
Notifications
You must be signed in to change notification settings - Fork 119
/
archive.php
30 lines (30 loc) · 927 Bytes
/
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
/**
* @package lolimeow@boxmoe themes
* @link https://www.boxmoe.com
*/
get_header(); ?>
<section class="section-blog-breadcrumb container fadein-bottom">
<div class="breadcrumb-head">
<span>
<i class="fa fa-home"></i>Archive</span>
</div>
</section>
<section id="boxmoe_theme_container">
<div class="container">
<div class="row">
<div class="blog-post <?php echo boxmoe_blog_layout() ?> fadein-bottom">
<?php while ( have_posts() ) :
the_post();
get_template_part( 'module/template/blog-list');
endwhile;
?>
<?php boxmoe_paging(); ?>
</div>
<?php if (get_boxmoe('blog_layout')== 'two' ): ?>
<?php get_sidebar();?>
<?php endif; ?>
</div>
</div>
</section>
<?php get_footer(); ?>