Skip to content

Instantly share code, notes, and snippets.

@e2kaneko
Created February 12, 2013 04:31
<?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