ru-se.com

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

page-with-right-sidebar.php (663B)


      1 <?php
      2 /*
      3 Template Name: Page With Right 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-8 col-md-9">
     12                     <?php
     13                     while (have_posts()) : the_post();
     14                         the_content();
     15                     endwhile;
     16                     ?>
     17                 </div>
     18 
     19                 <div class="col-xs-12 col-sm-4 col-md-3 page-sidebar-column">
     20                     <?php materialis_get_sidebar('pages'); ?>
     21                 </div>
     22             </div>
     23         </div>
     24     </div>
     25 <?php get_footer(); ?>