require_once __DIR__.'/vendor/autoload.php';
require_once __DIR__.'/assets.php';

$app = new Silex\Application(array(
   'debug' => true
));

$app->register(
   new Silex\Provider\TwigServiceProvider(),
   array(
      'twig.path' => __DIR__.'/views',
   )
);