Fenom - Template Engine for PHP =============================== > Composer package: `{"fenom/fenom": "dev-master"}`. See on [Packagist.org](https://packagist.org/packages/bzick/fenom) [![Build Status](https://travis-ci.org/bzick/fenom.png?branch=master)](https://travis-ci.org/bzick/fenom) ## [Usage](./docs/usage.md) :: [Documentation](./docs/readme.md) :: [Benchmark](./docs/benchmark.md) :: [Articles](./docs/articles.md) * Simple [syntax](./docs/syntax.md) * [Fast](./docs/benchmark.md) * [Secure](./docs/settings.md) * [Simple](./ideology.md) * [Flexible](./docs/main.md#extends) * [Lightweight](./docs/benchmark.md#stats) * [Powerful](./docs/main.md) * Easy to use: Simple template ```smarty Fenom {if $templaters.fenom?} {var $tpl = $templaters.fenom}
Name: {$tpl.name}
Description: {$tpl.name|truncate:80}
{/if} ``` Display template ```php display("pages/about.tpl", $data); ``` Get content ```php fetch("pages/about.tpl", $data); ``` Runtime compilation ```php compileCode('Hello {$user.name}! {if $user.email?} Your email: {$user.email} {/if}'); $template->display($data); // or $content = $template->fetch($data); ```