15 lines
No EOL
237 B
PHP
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']
|
|
)); |