-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.php
33 lines (29 loc) · 1.09 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
<?php get_header(); ?>
<div class="col-md-12 tainacan-page-area">
<?php if ( is_home() && ! is_front_page() ): ?>
<header class="page-header">
<h3 class="page-title"> <?php _t('Latest News',1); ?></h3>
</header>
<?php else: ?>
<header class="page-header col-md-12">
<h2 class="page-title"><?php _t( 'Posts', 1); ?></h2>
</header>
<?php endif; ?>
<div id="primary" class="tainacan-content-area">
<main id="main" class="col-md-8" role="main">
<?php if (have_posts()):
while ( have_posts() ) : the_post();
get_template_part( 'partials/content/content' );
endwhile;
echo "<div class='col-md-12 text-center'>" . get_the_posts_pagination(['screen_reader_text' => _t('More news')]) . "</div>";
else:
get_template_part( 'partials/content/content', 'none' );
endif;
?>
</main>
</div>
<div class="col-md-4">
<?php get_sidebar(); ?>
</div>
</div><!-- .wrap -->
<?php get_footer(); ?>