mirror of
https://gitnet.fr/deblan/gist.git
synced 2021-08-14 08:30:49 +02:00
14 lines
276 B
PHP
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;
|
|
});
|