1. Go to this page and download the library: Download agashe/sigmaphp-template library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
agashe / sigmaphp-template example snippets
igmaPHP\Template\Engine;
$engine = new Engine('/templates');
$output = $engine->render('index');
// index.template.html
<h1>Header Tag</h1>
<ul>
{% for $i in 5 %}
<li>{{ $i }}</li>
{% end_for %}
</ul>
$engine->render(
'admin.users.edit', // template's file path including the name
['users' => [...]], // parameters array
true // return string or print output option
);