Advertisement
Guest User

Untitled

a guest
Jan 28th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.98 KB | None | 0 0
  1. <?php
  2. defined('_INCLUDE_') or die('Shit happens!');
  3.  
  4. include_once("system/functions/global_func.php");
  5. ?>
  6.  
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  8. <html>
  9. <head>
  10.     <link rel='icon' href='template/<?php echo($site_template); ?>/images/favicon.png' type='image/x-icon'>
  11.     <link rel='shortcut icon' href='template/<?php echo($site_template); ?>//images/favicon.png' type='image/x-icon'>
  12.     <meta http-equiv='Content-Type' content='text/html'; charset='utf-8'>
  13.     <meta http-equiv="Cache-Control" content="no-cache">
  14.     <title>YourCourses</title>
  15.     <?php include('inc/scripts.php'); ?>
  16.     <link href='/template/<?php echo($site_template); ?>/css/main-style.css' rel='stylesheet' type='text/css'>
  17. </head>
  18.  
  19. <body>
  20.     <?php
  21.     include_once("inc/glidemenu.php");
  22.     include_once("inc/header.php");
  23.     ?>
  24.     <div id='page_content'>
  25.         <?php
  26.         include_once("template/".$site_template."/".$page_content_inc.".php");
  27.         ?>
  28.     </div>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement