fenom/sandbox/fenom.php

8 lines
220 B
PHP
Raw Normal View History

2013-07-22 18:03:43 +04:00
<?php
2014-11-06 22:31:59 +03:00
require_once __DIR__.'/../src/Fenom.php';
2013-07-22 18:03:43 +04:00
2014-11-06 22:31:59 +03:00
\Fenom::registerAutoload();
2013-08-11 19:55:30 +04:00
2014-11-06 22:31:59 +03:00
$fenom = Fenom::factory(__DIR__.'/templates', __DIR__.'/compiled', Fenom::AUTO_RELOAD | Fenom::AUTO_ESCAPE);
2014-04-17 23:50:18 +04:00
2014-11-06 22:31:59 +03:00
$fenom->display('greeting.tpl');