我想知道是否可以使用twig和haml结合使用symfony2视图。
这是Haml http://haml.info/(这是Ruby On Rails)基本上就是用这个:
%section.container
%h1= post.title
%h2= post.subtitle
.content
= post.content
而不是:
<section class=”container”>
<h1><%= post.title %></h1>
<h2><%= post.subtitle %></h2>
<div class=”content”>
<%= post.content %>
</div>
</section>
这是php https://code.google.com/p/phamlp/的版本,但我想知道我是否可以在Symfony 2中使用它
答案 0 :(得分:1)
您是否尝试过arnaud-lb/MtHamlBundle?
根据README,它可以混合Twig和Haml模板。
注意: 该软件包似乎被锁定在Symfony 2.1上,并且可能存在不必要的依赖关系。您可以分叉回购并尝试更改version in composer.json。要了解如何安装forked bundle,您可以观看read the answers of this Stackoverflow question。如果可行,请考虑向存储库发送拉取请求。