12 lines
239 B
PHP
12 lines
239 B
PHP
<?php
|
|
|
|
/**
|
|
* Template Name: projets
|
|
*/
|
|
|
|
$context = Timber::context();
|
|
|
|
$timber_post = new Timber\Post();
|
|
$context['post'] = $timber_post;
|
|
Timber::render( array( 'page-' . $timber_post->post_name . '.twig', 'page.twig' ), $context );
|