Advertisement
spacechase0

GDN Top Nav

Mar 4th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.32 KB | None | 0 0
  1. <?php require_once( "core.php" ); ?>
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5.     <head>
  6.         <meta name="keywords" content="game design,Game Design Novice,game design novice,designing games,game programming,programming games,game,games,design" />
  7.         <!--<meta name="description" content="Game Design Novice is a resource for learning about various aspects of creating games, like game design, programming, etc." />-->
  8.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php
  9.         if( isset( $pass ) and $pass === true )
  10.         { ?>
  11.         <meta http-equiv="REFRESH" content="1;url=cpanel.php" /> <?php
  12.         } ?>
  13.        
  14.         <base href="http://gamedesignnovice.net/" />
  15.        
  16.         <title><?php echo( $site->GetPageTitle() ); ?></title>
  17.        
  18.         <link href="stylesheet.css" rel="stylesheet" type="text/css" />
  19.         <script type="text/javascript" src="res/forums.js"></script>
  20.     </head>
  21.     <body>
  22.     <div id="container">
  23.  
  24.         <a href="index.php"><img src="res/logo.png" alt="Game Design Novice" border="0" id="logo" /></a>
  25.  
  26.         <?php
  27.        
  28.         if ( $site->GetLoggedInUser() === array() )
  29.         {
  30.             echo( $site->GetPageContent( 7 ) );
  31.         }
  32.         else
  33.         {
  34.             echo( $site->GetPageContent( 5 ) );
  35.         }
  36.        
  37.         ?>
  38.        
  39.         <div id="content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement