Skip to content

Instantly share code, notes, and snippets.

@e2kaneko
Created February 12, 2013 04:31
Show Gist options
  • Save e2kaneko/4760256 to your computer and use it in GitHub Desktop.
Save e2kaneko/4760256 to your computer and use it in GitHub Desktop.
<?php
require_once 'Twig/Autoloader.php';
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem('template/');
$twig = new Twig_Environment($loader, array(
'cache' => 'cache/',
));
echo $twig->render('hello.html', array('message' => 'HELLO!!'));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment