13 lines
		
	
	
		
			215 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			215 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
get_header();
 | 
						|
?>
 | 
						|
<?php
 | 
						|
if ( is_front_page() ) {
 | 
						|
	get_template_part( 'parts/home' );
 | 
						|
} else if ( is_home() ) {
 | 
						|
	get_template_part( 'parts/blog' );
 | 
						|
} else {
 | 
						|
	get_template_part( 'parts/page' );
 | 
						|
}
 | 
						|
get_footer();
 | 
						|
?>
 |