I wonder if theres a workaround to use twig combined with haml for symfony2 views.
This is Haml http://haml.info/ (This is for Ruby On Rails) Basically is to use this:
%section.container
%h1= post.title
%h2= post.subtitle
.content
= post.content
instead of this:
<section class=”container”>
<h1><%= post.title %></h1>
<h2><%= post.subtitle %></h2>
<div class=”content”>
<%= post.content %>
</div>
</section>
This is the version for php https://code.google.com/p/phamlp/ but I wondering if I can use it in Symfony 2