homepage.php (365B)
1 <?php 2 /* 3 * Template Name: Front Page Template 4 */ 5 materialis_get_header('homepage'); 6 ?> 7 8 <div <?php echo materialis_page_content_atts(); ?>> 9 <div class="<?php materialis_page_content_wrapper_class(); ?>"> 10 <?php 11 while (have_posts()) : the_post(); 12 the_content(); 13 endwhile; 14 ?> 15 </div> 16 </div> 17 18 <?php get_footer(); ?>