single.php (835B)
1 <?php materialis_get_header(); ?> 2 <div <?php echo materialis_page_content_atts("content post-page"); ?>> 3 <div class="gridContainer"> 4 <div class="row"> 5 <div class=" <?php echo materialis_posts_wrapper_class(); ?>"> 6 <div class="post-item"> 7 <?php 8 if (have_posts()): 9 while (have_posts()): 10 the_post(); 11 get_template_part('template-parts/content', 'single'); 12 endwhile; 13 else : 14 get_template_part('template-parts/content', 'none'); 15 endif; 16 ?> 17 </div> 18 </div> 19 <?php get_sidebar(); ?> 20 </div> 21 </div> 22 23 </div> 24 <?php get_footer(); ?>