-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
116 lines (90 loc) · 3.34 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
/**
* The main template file
* @package sara-log
* @version 1.0.1
*/
get_header();
if(get_theme_mod('home_style')=='Simple') :
$column = '';
$class = "sara-log-blog-grid";
$row = " masonry-wrap row";
else :
$column = 'col-sm-12';
$class = "sara-log-blog-list";
$row = "";
endif;
?>
<!-- /Breadcrumb Header -->
<section class="latest-post-wrap">
<div class="container">
<div class="row">
<div class="latest-post-inner">
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => 3,
'order' => 'DESC',
);
$the_query = new WP_Query( $args );
if ($the_query-> have_posts() ) :
/* Start the Loop */
while ( $the_query->have_posts() ) : $the_query->the_post();
get_template_part( 'template-parts/post/content','latest');
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
</div>
</div>
</div>
</section>
<div class="container">
<!-- Main Content Area -->
<section class="section-wrap">
<div class="row">
<div class="col-sm-12">
<!-- Blog Grid Posts -->
<div class="sara-log-blog-grid" id="content">
<div class="row">
<div id="primary" <?php if(get_theme_mod('home_sidebar')==true) : ?> class="col-md-12" <?php else: ?>class="col-md-8 classic left-block" <?php endif; ?> >
<div class="<?php echo esc_attr($class); ?>">
<div class="row <?php echo esc_attr( $row );?>">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content');
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
</div>
</div>
<div class="sara-log-pagination">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( '<<', 'sara-log' ),
'next_text' => __( '>>', 'sara-log' ),
) ); ?>
</div>
</div>
<?php if(get_theme_mod('home_sidebar')==false) : ?>
<!-- Sidebar -->
<div class="col-md-4" id="secondary">
<div class="sara-log-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<!-- /Sidebar -->
<?php endif; ?>
</div>
</div>
<!-- Blog Grid Posts -->
</div>
</div>
</section>
</div>
<?php get_footer();