Twig Templating
composer require twig/twiguse Siler\Twig;
Twig\init('path/to/templates');Twig\init('path/to/templates')
->addFunction(new Twig_SimpleFunction('url', 'Siler\Http\url'));$shouldTwigDebug = true;
Twig\init('path/to/templates', 'path/to/templates/cache', $shouldTwigDebug);echo Twig\render('pages/home.twig');$data = ['message' => 'Hello World'];
echo Twig\render('pages/home.twig', $data);$html = Twig\render('pages/home.twig');
Response\html($html);Last updated