forked from wp-blocks/modul-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
47 lines (35 loc) · 1.16 KB
/
category.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
46
47
<?php
/**
* The template for displaying category pages with the grid layout
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title main-width has-primary-color"><?php the_archive_title(); ?></h1>
<?php the_archive_description(); ?>
</header>
<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><!-- /main -->
</div><!-- /primary -->
<?php
get_footer();