twig
Twig is a modern templating language for PHP. It was created by Fabien Potencier and released in 2009, and it is developed as part of the Symfony ecosystem. Twig emphasizes readability, security, and performance, compiling templates to optimized PHP code and using caching to speed up rendering while keeping presentation and logic separate.
Twig syntax uses three delimiters: {{ expression }} for output, {% statement %} for control structures, and {# comments #} for notes
A key design principle of Twig is security. It provides automatic escaping by default for HTML output
Twig is released as open-source software under a BSD-style license and is maintained independently of PHP itself.