megwoo
6/25/2015 - 7:28 PM

Magento Including Templates

// layout xml
<reference name="content">
      <block type="core/template" name="contactForm" template="contacts/form.phtml"/>
</reference>


// include inline in CMS page or block
{{block type="core/template" template="contacts/form.phtml"}}


// include in php
<?php echo $this->getLayout()->createBlock('core/template')->setTemplate('contacts/form.phtml')->toHtml(); ?>