<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="content-script-type" content="text/javascript"> <title>Gwen McKay</title> <link rel="stylesheet" type="text/css" href="application/views/style.css"> <script type="text/javascript" src="application/views/js/jquery-1.4.2.min.js"></script> <?php echo $stylesheet; ?> <?php echo $javascript; ?> </head> <body class=""> <div id="container" class="container_12"> <?php echo Request::Factory('header/public')->execute()->body(); echo Request::Factory('publicmenu')->execute()->body(); echo $body; echo Request::Factory('footer/public')->execute()->body(); ?> </div> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="content-script-type" content="text/javascript"> <title>LatticeCMS “It's Made of People!”</title> <?php echo $stylesheet; ?> <?php echo $javascript; ?> </head> <body> <div id="container" class="container_12"> <?php echo Request::Factory('header/admin')->execute()->body(); echo $body; echo Request::Factory('footer/admin')->execute()->body(); ?> </div> </body> </html>
<?php echo Request::Factory('authstatus')->execute()->body();