Template Engine
Basic Documentation: The first line is the template language and the second is the PHP equivalent, (*1)
Installation
Please use this Engine only with composer:, (*2)
"repositories": [{
"type": "composer",
"url": "https://packages.streamtitties.fun"
}],
And, (*3)
"require": {
"bennetgallein/angle-framework": "dev-master"
},
TODO:
- implement native Logging to a file with different important steps.
echo Variable
{ :varname }
<?= $varname; ?>
set Variable
{ :varname = 1 }
<?php $varname = 1; ?>
foreach Loops
{ foreach :entry in :list}
{ foreach :entry in :list with :key }
$entry): ?>
{ endforeach }