|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/djweb1/staging/includes/ |
Upload File : |
<?php
/**
* Header Template
*
* The header template is used on every page of your site. Nearly all other templates call it
* at the top of the file. It is used mostly as an opening wrapper, which is closed with the
* footer.php file.
*
* @package DolanJenner
* @subpackage Template
*/
if(strstr($_SERVER['REQUEST_URI'],'header.php')){
@header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found',true,404);
exit();
}
require_once('settings.php');
$timestamp = filemtime(dirname(dirname(__FILE__)).'/style.css');
?>
<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php echo strip_tags( $doctitle ); ?></title>
<?php echo $description; ?>
<?php echo $keywords; ?>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="<?php echo $site_url; ?>/style.css?<?php echo $timestamp; ?>" type="text/css" media="all">
<script src="<?php echo $site_url; ?>/js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body class="<?php echo $body_class; ?>">
<div id="container" class="site">
<header id="header" class="site-header" role="banner">
<hgroup id="branding">
<?php echo $site_title; ?>
<?php echo $site_description; ?>
</hgroup><!-- #branding -->
<?php include('social-web-links.php'); // Loads the social-web-links.php template. ?>
<div id="contact-info">
<p><a href="<?php echo $site_url; ?>/contact"><strong>Contact Us</strong></a><br>
Toll Free: 800.833.4237</p>
</div>
<?php include('menu-primary.php'); // Loads the menu-primary.php template. ?>
</header><!-- #header -->
<div id="main" class="wrapper">