klein/example.php
2015-12-02 00:39:27 +03:00

15 lines
No EOL
237 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' => ['Paul', 'Jim', 'Jane']
));