Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I always thought that jinja was better because of template extending.. but them I've found this:

http://www.smarty.net/docs/en/advanced.features.template.inheritance.tpl

Is there's any difference of smarty extendings and jinja2 extendings?

share|improve this question

1 Answer

up vote 9 down vote accepted

Smarty is an overkill, in my opinion. I prefer Twig:

http://www.twig-project.org/

You should give it a try if you're stuck with php. It's almost the same as jinja2.

share|improve this answer
+1 twig is the best there is for PHP – Silver Light Apr 19 '11 at 6:37
well, it was my personal saviour 3 months ago when we had to quickly rewrite an app. and the designer jumped right on it! – vonPetrushev Apr 19 '11 at 11:43
I too really like the twig syntax, but while implementing it for a CMS I was developing I found it to be buggy. Twig kept running into issues using associative arrays in the templates. On top of that, it used eval(), which was a big red flag for me. I'm not sure if these issues still exist, but if they do, then stay clear! Mustache may be a good alternative to Twig and Smarty, although I've not yet tried it. – Evan Byrne 19 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.