Este seria el codigo del archivo layout.phtml.
layout.phtml
Código PHP:
Ver original<?php echo $this->doctype() ?> <!-- This Line will output the doctype we set inside the bootstrap file -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sistema Informatico Clinica</title>
<?php echo $this->headLink()->appendStylesheet('/css/global.css') ?>
<?php echo $this->headLink()->appendStylesheet('/css/frame_menu_clinica.css') ?>
</head>
<frameset rows="90,*" framespacing="0" frameborder="0" border="0">
<frame src="menu.html" name="encabezado" scrolling="NO" noresize target="principal">
<frame src="content.php" name="principal" target="_self" scrolling="auto">
<noframes>
<body>
</body>
</noframes>
</frameset>
<frameset>
</frameset>
</html>