generator-chisel icon indicating copy to clipboard operation
generator-chisel copied to clipboard

Add front-page.twig in page.php

Open marcinkrzeminski opened this issue 6 years ago • 0 comments

Add an option for a front-page.twig template in page.php.

Code is very similar to what we have in index.php

<?php
global $post;

$context   = \Timber\Timber::get_context();
$templates = [ 'page-' . $post->post_name . '.twig', 'page.twig' ];

if ( is_front_page() ) {
	array_unshift( $templates, 'front-page.twig' );
}
Timber::render( $templates, $context );

marcinkrzeminski avatar Oct 25 '19 09:10 marcinkrzeminski