|
I have a block that I want to show content from CMS -> static blocks in the backend.
I have a block called navBottom which currently shows static content.
in page.xml
<block type="page/html/navBottom" name="navBottom" as="navBottom" template="page/html/navBottom.phtml"/>
snippet from 2columns-right.phtml
!-- [start] bottom-menu --> <div class="nav-bottom-container">
<?php echo $this->getChildHtml('navBottom') ?>
</div> <!-- [end] bottom-menu -->
navBottom.phtml
<div class="navBottom"> BOTTOM NAV </div>
I would like BOTTOM NAV to actually be the content defined in the static block with the identifier nav_bottom.
Can anyone offer any tips on how to go about this?
Thanks,
-marc
|