I'm kind of lost.
I made a sort of 'master page' that I want a page to use. Where do I declare it?
MainLayout.phtml
<html>
<head>
</head>
<body>
<?php echo $this->layout()->content; ?>
<div>
<ul>
<li><a href="#">Navigation</a></li>
<li><a href="#">Navigation</a></li>
<li><a href="#">Navigation</a></li>
<li><a href="#">Navigation</a></li>
<li><a href="#">Navigation</a></li>
</ul>
</div>
</body>
</html>
Index.phtml
<?php echo $this->doctype() ?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<?php echo $this->headMeta() ?>
<meta name="language" content="en" />
<title><?php echo $this->escape($this->title) ?></title>
</head>
<body>
<h1>This is the first page I made.</h1>
</body>
</html>
I'm using the Zend framework.