mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
8 lines
220 B
PHP
8 lines
220 B
PHP
<?php
|
|
require_once __DIR__.'/../src/Fenom.php';
|
|
|
|
\Fenom::registerAutoload();
|
|
|
|
$fenom = Fenom::factory(__DIR__.'/templates', __DIR__.'/compiled', Fenom::AUTO_RELOAD | Fenom::AUTO_ESCAPE);
|
|
|
|
$fenom->display('greeting.tpl'); |