Bow Framework's view system is powerful and big simple template engine.
We take this template file template.tintin.php
Show the legend message of programming learn
<h1>Hello {{name}}</h1>Rendre the template file:
use Bow\View\View;
$content = View::parse("template", ['name' => 'papac']);The output
Show the legend message of programming learn
<h1>Hello papac</h1>