gist/app/bootstrap.php.d/20-twig.php
2015-05-05 22:06:02 +02:00

14 lines
276 B
PHP

<?php
use Silex\Provider\TwigServiceProvider;
$app->register(new TwigServiceProvider(), array(
'twig.path' => $app['root_path'].'/src/Gist/Resources/views',
));
$app->extend('twig', function ($twig, $app) {
$twig->addGlobal('web_path', '/');
return $twig;
});