ru-se.com

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

page-with-left-sidebar.php (598B)


      1 <?php
      2 /*
      3 Template Name: Page With Left Sidebar
      4 */
      5 
      6 materialis_get_header();
      7 ?>
      8 <div class="page-content">
      9     <div class="gridContainer">
     10         <div class="row">
     11             <div class="col-xs-12 col-sm-4 col-md-3 page-sidebar-column">
     12                 <?php materialis_get_sidebar('pages'); ?>
     13             </div>
     14 
     15             <div class="col-xs-12 col-sm-8 col-md-9">
     16                 <?php
     17                 while (have_posts()) : the_post();
     18                     the_content();
     19                 endwhile;
     20                 ?>
     21             </div>
     22         </div>
     23     </div>
     24 </div>
     25 <?php get_footer(); ?>