В макете (app / design / frontend / your_theme / layout / default.xml):
<default>
<cms_page> <!-- need to be redefined for your needs -->
<reference name="content">
<block type="cms/block" name="cms_newest_product" as="cms_newest_product">
<action method="setBlockId"><block_id>newest_product</block_id></action>
</block>
</reference>
</cms_page>
</default>
В вашем шаблоне phtml:
<?php echo $this->getChildHtml('newest_product'); ?>
Не забудьте про очистку кеша.
Думаю, это поможет.