How to send the var?
<?php echo $controller->renderPartial('home_page'); ?>
I don't fully understand your question. If you mean passing variables to the partial you can do it like
<?php echo $controller->renderPartial('home_page', array('Post'=> $Post)); ?>
or using Sintags like
<%= render_partial 'home_page', :Post => Post %>
1 to 2 of 2