19 lines
No EOL
386 B
PHP
19 lines
No EOL
386 B
PHP
<?php
|
|
|
|
require_once 'klein.php';
|
|
|
|
function title($x) {
|
|
return ucfirst($x);
|
|
}
|
|
|
|
$tpl = new Klein();
|
|
$tpl->compile('tempalte.html');
|
|
|
|
echo $tpl->render(array(
|
|
'pagename' => 'awesome people',
|
|
'authors' => [['name' => 'Paul', 'age' => 10], ['name' => 'Jim', 'age' => 11], ['name' => 'Jane', 'age' => 12]],
|
|
'city'=> [
|
|
'Yaroslaval' => 1,
|
|
'Moscow' => 2
|
|
]
|
|
)); |