-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (27 loc) · 1.12 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
<?php get_header(); ?>
<div class="header-image">
<?php get_template_part( 'parts/content', 'header-image' ); ?>
</div>
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<h1><?php esc_html_e( 'Blog', 'template-default' ); ?></h1>
<div class="container">
<div class="blog-items">
<?php
if( have_posts() ):
while( have_posts() ): the_post();
get_template_part( 'parts/content' );
endwhile;
the_posts_pagination();
else:
?>
<p><?php esc_html_e( 'Nothing yet to be displayed!', 'template-default' ); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?><!-- #Add Sidebar in the site -->
</div>
</main>
</div>
</div>
<?php get_footer(); ?>