Skip to content

Instantly share code, notes, and snippets.

@v6ak
Created June 23, 2011 11:39
Show Gist options
  • Select an option

  • Save v6ak/1042398 to your computer and use it in GitHub Desktop.

Select an option

Save v6ak/1042398 to your computer and use it in GitHub Desktop.
Latte example
Hello {$name}!
<?php
require_once 'NetteFramework-2.0beta-PHP5.3/Nette-minified/nette.min.php'; // downloaded from http://nette.org/download
use Nette\Latte\Engine as LatteEngine;
$template = (object)array('name'=>'world');
//$template->parser->addMacro('foo', new IMacroImplementation());
$name = 'world';
$latte = new LatteEngine();
eval('?'.'>'.$latte(file_get_contents('hello.latte')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment