-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
65 lines (52 loc) · 1.95 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
<?php
/**
* The main template file
* @package log-book
* @version 1.0.1
*/
get_header(); ?>
<!-- /Breadcrumb Header -->
<div class="container">
<!-- Main Content Area -->
<section class="section-wrap">
<div class="row">
<div class="col-sm-12">
<!-- Blog Grid Posts -->
<div class="tm-blog-grid">
<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; ?> >
<?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 class="tm-pagination">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( '<<', 'log-book' ),
'next_text' => __( '>>', 'log-book' ),
) ); ?>
</div>
</div>
<?php if(get_theme_mod('home_sidebar')==false) : ?>
<!-- Sidebar -->
<div class="col-sm-4" id="secondary">
<div class="tm-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<!-- /Sidebar -->
<?php endif; ?>
</div>
</div>
<!-- Blog Grid Posts -->
</div>
</div>
</section>
</div>
<?php get_footer();