klein/example.php

15 lines
No EOL
312 B
PHP

<?php
require_once 'klein.php';
function title($x) {
return ucfirst($x);
}
$tpl = new Klein();
$tpl->compile('index.html');
echo $tpl->render(array(
'pagename' => 'awesome people',
'authors' => [['name' => 'Paul', 'age' => 10], ['name' => 'Jim', 'age' => 11], ['name' => 'Jane', 'age' => 12]]
));