tjtjtjのメモ

自分のためのメモです

yiiext/twig-rendererでページの一部分をテンプレート化したい

yii は $this->rendarPartial ですが、Twig はincludeタグで書きます。

<?php $this->renderPartial('_view', array('data'=>$model)); ?>
↓↓↓↓↓
{% include '/views/post/_view.twig' with {'data':model} %}

見たまんま書き換えできると思います。そしてrenderPartialでなくていいのかとつぶやくはず。私はつぶやきました。