class Application extends Silex\Application
{
use Silex\Application\TwigTrait;
}
$app = new Application();
$app->register(new Silex\Provider\TwigServiceProvider(), array(
'twig.path' => __DIR__ . '/../views',
));
$app->get('/', function () use ($app) {
return $app->render('home.twig');
});
$app->run();