Go to file
2013-02-27 20:55:47 +04:00
benchmark Done static inheritance 2013-02-15 01:49:26 +04:00
docs Update docs/main.md 2013-02-27 11:03:47 +04:00
src Fix template nesting 2013-02-27 20:55:08 +04:00
tests Fix template nesting 2013-02-27 20:55:08 +04:00
.gitignore Hold folders 2013-02-20 18:01:21 +04:00
.travis.yml Add composer to travis 2013-02-07 18:01:06 +04:00
composer.json Update composer.json 2013-02-22 09:42:49 +04:00
phpunit.xml.dist port 2013-01-25 18:36:16 +04:00
README.md Update main 2013-02-27 20:55:47 +04:00

Aspect - awesome template engine for PHP

Composer package: {"bzick/aspect": "dev-master"}

Build Status

About :: Documentation :: Benchmark :: Articles

Primitive template

<html>
    <head>
        <title>Aspect</title>
    </head>
    <body>
    {if $templaters.aspect?}
        {var $tpl = $templaters.aspect}
        <div>Name: {$tpl.name}</div>
        <div>Description: {$tpl.name|truncate:80}</div>
        <ul>
        {foreach $tpl.features as $feature}
            <li>{$feature.name} (from {$feature.timestamp|gmdate:"Y-m-d H:i:s"})</li>
        {/foreach}
        </ul>
    {/if}
    </body>
</html>

Display template

<?php
$aspect = Aspect::factory('./templates', './compiled', Aspect::CHECK_MTIME);
$aspect->display("pages/about.tpl", $data);

Get content

<?php
$aspect = Aspect::factory('./templates', './compiled', Aspect::CHECK_MTIME);
$content = $aspect->fetch("pages/about.tpl", $data);

Runtime compilation

<?php
$aspect = new Aspect();
$tempate = $aspect->compileCode('Hello {$user.name}! {if $user.email?} Your email: {$user.email} {/if}');
$tempate->display($data);
// or
$content = $tempate->fetch($data);