QiqはComposerから qiq/qiq としてインストールします。
composer require qiq/qiq ^1.0
まず、テンプレートファイルは/path/to/templates/hello.php
に保存されているとします。
Hello, {{h $this->name }}. That was Qiq!
And this is PHP, <?= $this->h($this->name) ?>.
次はhello
テンプレートを使って出力を生成するためのプレゼンテーションコードです。
use Qiq\Template;
$tpl = Template::new('/path/to/templates');
$tpl->setView('hello');
$tpl->setData([
'name' => 'World'
]);
echo $tpl->render();
これだけです。