I'm looking for the templates engine for Java with syntax like in Django templates or Twig (PHP). Is it exists?
Update: The target is to have same templates files for different languages.
File index.tpl {{head}} {{ var|escape }} {{body}}
can be rendered from python (Django) code as well as from PHP, using Twig. I'm looking for Java solution.
Any other templates system available in Java, PHP and python is suitable.
Thanks.