Ron91

Untitled

Feb 14th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.93 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.         <?php include('./includes/header.php'); ?>
  5.         <meta name="keywords" content="" />
  6.         <meta name="description" content="" />
  7.         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  8.         <title><?php echo $core->pagetitle; ?></title>
  9.         <link href="style.css" rel="stylesheet" type="text/css" media="screen" />
  10.     </head>
  11.     <body>
  12.         <div id="wrapper">
  13.             <div id="header">
  14.                 <div id="logo">
  15.                     <h1><a href="./index.php"><?php echo $core->logotext; ?></a></h1>
  16.                     <p><?php echo $core->logodesc; ?></p>
  17.                 </div>
  18.                 <div id="menu">
  19.                     <ul>
  20.                         <?php $core->generateLinks($_SERVER['PHP_SELF']); ?>
  21.                     </ul>
  22.                 </div>
  23.             </div>
  24.             <div id="page">
  25.                 <div id="page-bgtop">
  26.                     <div id="page-bgbtm">
  27.                         <div id="content">
  28.                             <?php $core->getNews(); ?>
  29.                             <div style="clear: both;">&nbsp;</div>
  30.                         </div>
  31.                         <div id="sidebar">
  32.                             <ul>
  33.                                 <li>
  34.                                     <?php $core->userPanel(); ?>
  35.                                 </li>
  36.                                 <li>
  37.                                     <?php $core->serverStats(); ?>
  38.                                 </li>
  39.                             </ul>
  40.                         </div>
  41.                         <div style="clear: both;">&nbsp;</div>
  42.                     </div>
  43.                 </div>
  44.             </div>
  45.         </div>
  46.         <div id="footer">
  47.             <?php $core->footer(); ?>
  48.         </div>
  49.     </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment