klein/example.php

12 lines
No EOL
256 B
PHP

<?php
require_once 'klein.php';
$tpl = new Klein();
$tpl->compile('index.html');
echo $tpl->render(array(
'style' => array('style.css'),
'script' => array(array('name' => 'script1.js'), array('name' => 'script2.js')),
'content' => 'test'
));