forked from wp-blocks/modul-r
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page.php
More file actions
56 lines (37 loc) · 1.14 KB
/
front-page.php
File metadata and controls
56 lines (37 loc) · 1.14 KB
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
46
47
48
49
50
51
52
53
54
55
56
<?php get_header();
if (is_home()) { ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php if ( have_posts() ) : ?>
<div class="masonry-container main-width alignwide">
<div id="masonry-wrapper">
<div class="grid__col-sizer"></div>
<div class="grid__gutter-sizer"></div>
<?php
// create the masonry wrapper
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content/content', 'masonry' );
endwhile;
?>
</div>
</div>
<?php modul_r_masonry_nav(); ?>
<?php
// If no content, include the "No posts found" template.
else :
get_template_part( 'template-parts/content/content', 'none' );
endif; ?>
</main>
</div>
<?php
} else {
if ( have_posts() ) {
// Load posts loop.
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content/content', 'homepage' );
}
}
}
?>
<?php get_footer();