Qiq is installable via Composer as qiq/qiq:
composer require qiq/qiq ^1.0
First, a template file, saved at /path/to/templates/hello.php
:
Hello, {{h $this->name }}. That was Qiq!
And this is PHP, <?= $this->h($this->name) ?>.
Next, the presentation code, to generate output using the hello
template:
use Qiq\Template;
$tpl = Template::new('/path/to/templates');
$tpl->setView('hello');
$tpl->setData([
'name' => 'World'
]);
echo $tpl();
That's all there is to it.