ru-se.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

page.php (346B)


      1 <?php materialis_get_header();?>
      2 
      3 <div <?php echo materialis_page_content_atts("page-content"); ?>>
      4   <div class="<?php materialis_page_content_wrapper_class(); ?>">
      5    <?php 
      6       while ( have_posts() ) : the_post();
      7         get_template_part( 'template-parts/content', 'page' );
      8       endwhile;
      9      ?>
     10   </div>
     11 </div>
     12 
     13 <?php get_footer(); ?>