20 lines
No EOL
409 B
PHP
20 lines
No EOL
409 B
PHP
<?php
|
|
|
|
require_once '../src/Klein.php';
|
|
|
|
use ctiso\Klein;
|
|
|
|
function title($x) {
|
|
return ucfirst($x);
|
|
}
|
|
|
|
$tpl = new Klein(__DIR__ . '/cache');
|
|
|
|
echo $tpl->render('template.html', [
|
|
'pagename' => 'awesome people',
|
|
'authors' => [['name' => 'Paul', 'age' => 10], ['name' => 'Jim', 'age' => 11], ['name' => 'Jane', 'age' => 12]],
|
|
'city'=> [
|
|
'Yaroslaval' => 1,
|
|
'Moscow' => 2
|
|
]
|
|
]); |