-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
23 lines (21 loc) · 792 Bytes
/
index.php
File metadata and controls
23 lines (21 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php get_header(); ?>
<section id="main">
<?php get_template_part('lib/sub-header')?>
<div class="container">
<div class="row">
<div id="content" class="site-content col-md-12" role="main">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
get_template_part( 'post-format/content', get_post_format() );
endwhile;
else:
get_template_part( 'post-format/content', 'none' );
endif;
?>
<?php themeum_pagination(); ?>
</div> <!-- #content -->
</div> <!-- .row -->
</div>
</section> <!-- .container -->
<?php get_footer();