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