Просмотр поста

.
Blade
The Frontend-Warrior

Структура файлов в "проекте":
/
cache/
src/
|--Fenom/
|----........
|--Fenom.php
templates/
|--index.tpl
index.php



index.php

<?php
require_once 'src/Fenom.php';

\Fenom::registerAutoload();

$fenom = Fenom::factory(__DIR__.'/template', __DIR__.'/cache', Fenom:ISABLE_CACHE ); 


$fenom->display("index.tpl", array(
  'title' => 'Заголовок страницы',
  'name' => 'Вася Пупкин' 
));
?>


templates/index.tpl
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>{$title}</title>
</head>
<body>
  Привет, {$name}!!!
</body>
</html>



как-то так