-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
24 lines (23 loc) · 835 Bytes
/
single.php
File metadata and controls
24 lines (23 loc) · 835 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
<?php materialis_get_header(); ?>
<div <?php echo materialis_page_content_atts("content post-page"); ?>>
<div class="gridContainer">
<div class="row">
<div class=" <?php echo materialis_posts_wrapper_class(); ?>">
<div class="post-item">
<?php
if (have_posts()):
while (have_posts()):
the_post();
get_template_part('template-parts/content', 'single');
endwhile;
else :
get_template_part('template-parts/content', 'none');
endif;
?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>