gist/app/bootstrap.php.d/20-twig.php

14 lines
276 B
PHP
Raw Normal View History

2015-05-05 20:33:05 +02:00
<?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;
});