Ver Mensaje Individual
  #17 (permalink)  
Antiguo 21/01/2011, 11:40
Fenris
 
Fecha de Ingreso: agosto-2008
Mensajes: 271
Antigüedad: 15 años, 8 meses
Puntos: 2
Respuesta: No renderiza el layout

Este seria el codigo del archivo layout.phtml.

layout.phtml

Código PHP:
Ver original
  1. <?php echo $this->doctype() ?> <!-- This Line will output the doctype we set inside the bootstrap file -->
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Sistema Informatico Clinica</title>
  6. <?php echo $this->headLink()->appendStylesheet('/css/global.css') ?>
  7. <?php echo $this->headLink()->appendStylesheet('/css/frame_menu_clinica.css') ?>
  8. </head>
  9. <frameset rows="90,*" framespacing="0" frameborder="0" border="0">
  10.   <frame src="menu.html" name="encabezado" scrolling="NO" noresize target="principal">
  11.   <frame src="content.php" name="principal" target="_self" scrolling="auto">
  12. <noframes>
  13.   <body>
  14. </body>
  15. </noframes>
  16. </frameset>
  17. <frameset>
  18. </frameset>
  19. </html>