-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (21 loc) · 734 Bytes
/
index.php
File metadata and controls
33 lines (21 loc) · 734 Bytes
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="content">
<?php get_template_part('inc/featured'); ?>
<div class="content-inner">
<?php if ( get_theme_mod('heading-enable','off') == 'on' ) : ?>
<?php get_template_part('inc/page-title'); ?>
<?php endif; ?>
<?php get_template_part('inc/front-widgets-top'); ?>
<?php if ( have_posts() ) : ?>
<div class="blog-content-wrap">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
</div>
<?php get_template_part('inc/front-widgets-bottom'); ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div>
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>