Code: Select all
<?php echo $this->render('header.phtml'); ?> <!-- finds this because it is in views/common/_elements -->
<?php echo $this->render('menu.phtml'); ?> <!-- cant find this because it is in views/default/vendors -->
<h1>This is a template!</h1>
<p>Yay a template! w00t! I love being a template!</p>
<?php echo $this->render('footer.phtml'); ?> <!-- finds this because it is in views/common/_elements -->So do I have to put it in common/default or something?