Skip to content

Instantly share code, notes, and snippets.

View MarcFRICOU's full-sized avatar

Marc FRICOU MarcFRICOU

  • Ankorstore
  • Nantes
View GitHub Profile
@igorw
igorw / index.php
Created April 21, 2011 00:05
Silex app with global Twig layout
<?php
require __DIR__.'/silex.phar';
$app = new Silex\Application();
$app->register(new Silex\Extension\TwigExtension(), array(
'twig.path' => __DIR__.'/views',
'twig.class_path' => __DIR__.'/vendor/twig/lib',
));