## Best templating language If you use [Jinja2][], [Django Templates][] or god forbid [Mako][] it will slowly drag you into horrible practice to use logic inside your templates. It starts with adding complex conditions, regexes and string operations then gets you to point when html and buisiness code are "fused in unholy union" aka PHP. To avoid it, use [Mustache][]. It gives you only simple loops even more simple conditions. If you don't need even that - just use [string.Template][]. 🏷️IMHO 🏷️Minimalism [Jinja2]: http://jinja.pocoo.org/docs/dev/ [Django Templates]: https://docs.djangoproject.com/en/dev/topics/templates/ [Mako]: http://www.makotemplates.org/ [Mustache]: https://mustache.github.io/ [string.Template]: https://docs.python.org/3/library/string.html#template-strings