-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
18 lines (18 loc) · 779 Bytes
/
index.php
File metadata and controls
18 lines (18 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php get_header(); ?>
<div class="grid-x">
<section id="content" role="main" class="py-4 small-12 medium-12 large-9 cell">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'partials/entry' ); ?>
<?php comments_template(); ?>
<?php endwhile;?>
<div class="pagination">
<?php if (function_exists('wp_corenavi')) wp_corenavi(); ?>
</div>
<?php endif; ?>
<?php get_template_part( 'partials/nav', 'below' ); ?>
</section>
<div class="cell small-12 medium-12 large-3 py-6 bg-grey-lightest px-6">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>