This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
kirby::$handlers['template'] = function($kirby, $page, $data = array()) { | |
require_once(__DIR__ . DS . 'vendor' . DS . 'autoload.php'); | |
$loader = new Twig_Loader_Filesystem($kirby->roots()->templates()); | |
$twig = new Twig_Environment($loader, array( | |
'cache' => false | |
)); |