-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
45 lines (31 loc) · 856 Bytes
/
home.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
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* The home template file.
*
* @package Sydney
*/
get_header(); ?>
<?php do_action('sydney_before_content'); ?>
<div id="primary" class="content-area grid-70 <?php echo sydney_blog_layout(); ?>">
<main id="main" class="post-wrap" role="main">
<?php if ( have_posts() ) : ?>
<div class="posts-layout">
<?php while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( 'page-templates/content', get_post_format() );
?>
<?php endwhile; ?>
</div>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( 'page-templates/content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php do_action('sydney_after_content'); ?>
<?php
if ( get_theme_mod('blog_layout','classic') == 'classic' ) :
get_sidebar();
endif;
?>
<?php get_footer(); ?>