|
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/owens.enteract/inc/ |
Upload File : |
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en" itemscope itemtype="http://schema.org/Product"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en" itemscope itemtype="http://schema.org/Product"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en" itemscope itemtype="http://schema.org/Product"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" itemscope itemtype="http://schema.org/Product"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<?php
/*
Place favicon.ico and apple-touch-icon.png in the root directory
*/
//if (ROOT_LOCATION != ""){echo "<base href=\"". ROOT_LOCATION ."\" />";}
//------------------------- META -------------------------------
//All meta information is globally defaulted in constants.php. Override specific meta on a page by page basis above header.php include
$metaTitle = str_replace("\"",""",$metaTitle);
$metaDesc = str_replace("\"",""",$metaDesc);
echo "<title>".$metaTitle."</title>";
echo "<meta name=\"description\" content=\"". $metaDesc ."\" />";
echo "<meta name=\"keywords\" content=\"". $metaKeywords ."\" />";
echo "<link rel=\"icon\" href=\"favicon.ico?v=2\">";
//----------------------- FB META ------------------------------
echo "<meta property=\"og:title\" content=\"". $metaTitle ."\" />";
echo "<meta property=\"og:site_name\" content=\"". $metaSiteName ."\" />";
echo "<meta property=\"og:description\" content=\"". $metaDesc ."\" />";
echo "<meta property=\"og:image\" content=\"". $metaImg ."\" />";
echo "<meta itemprop=\"name\" content=\"". $metaTitle ."\" />";
echo "<meta itemprop=\"description\" content=\"". $metaDesc ."\" />";
echo "<meta itemprop=\"image\" content=\"". $metaImg ."\" />";
//----------------------- TW META ------------------------------
//THIS REQUIRES TWITTER APPROVAL TO WORK -------
//https://dev.twitter.com/docs/cards/validation/validator
echo "<meta name=\"twitter:card\" content=\"summary\">";
//echo "<meta name=\"twitter:site\" content=\"@nytimes\">"; //include if there is a site that wishes to be associated with the tweet - this attribution is displayed
//echo "<meta name=\"twitter:creator\" content=\"@SarahMaslinNir\">"; //include if there is a creator that wishes to be associated with the tweet - this attribution is displayed
echo "<meta name=\"twitter:title\" content=\"". $metaTitle ."\" />";
echo "<meta name=\"twitter:description\" content=\"". $metaDesc ."\" />";
echo "<meta name=\"twitter:image\" content=\"". $metaImg ."\" />";
//------------------- MOBILE TOUCH ICONS ----------------------
/* Single Touch Icon for all devices */
echo " <link rel=\"apple-touch-icon\" href=\"apple-touch-icon.png\">";
//------------------- ANDROID CHROME THEME -------------------
echo "<meta name=\"theme-color\" content=\"#ffffff\">";
//define the device type, give the classname to body. This helps perform device-specific needs.
$deviceTypeClass = "";
if(IS_MOBILE){
$deviceTypeClass = "mobile";
} else if (IS_TABLET){
$deviceTypeClass = "tablet";
} else {
$deviceTypeClass = "desktop";
}
//-------------------------- CSS -------------------------------
echo "<link rel=\"stylesheet\" href=\"css/main.css?v=" . $cssVersion . "\">";
echo "<link href='https://fonts.googleapis.com/css?family=Crimson+Text:700,600italic|Open+Sans:600,700,600italic,700italic,400' rel='stylesheet' type='text/css'>";
//-------------------------- JS -------------------------------
//All server loaded JS vars should be set here.
echo "<script type=\"text/javascript\">";
echo "var GlobalsObj = {};";
echo " GlobalsObj.GOOGLE_ANALYTICS_ID = \"". GOOGLE_ANALYTICS_ID ."\";";
echo " GlobalsObj.FLOODLIGHT_SRC = \"". FLOODLIGHT_SRC ."\";";
echo " GlobalsObj.FB_APP_ID = '". FB_APP_ID ."';";
echo " GlobalsObj.ROOT_LOCATION = '". ROOT_LOCATION ."';";
echo " GlobalsObj.DYNAMIC_ASSETS_URL = '". DYNAMIC_ASSETS_URL ."';";
echo " GlobalsObj.STATIC_ASSETS_URL = '". STATIC_ASSETS_URL ."';";
echo "</script>";
/* This script combines modernizr and require into a single load.
Loads Responsive CSS support older IE versions. */
echo "<!--[if lt IE 9]>\n";
echo "<script src=\"js/respond-1.4.2.min.js\" type=\"text/javascript\"></script>\n";
echo "<![endif]-->\n";
echo "<script data-main=\"js/script.min.js?v=".$jsVersion."\" src=\"js/modernizr-2.8.3-require.min.js\"></script>";
?>
</head>
<body id="<?= $pageID ?>" class="<?= $deviceTypeClass ?>">
<div id="container">
<header id="main-header" class="clearfix">
<div class='header-middle'>
<a id="branding" href="#landing"><h1>Jesse Owens Foundation</h1></a>
<button id="toggle-btn">
<div class="burger"></div>
</button>
<div id="navs" class="clearfix">
<ul id="main-nav">
<!--
<li class='dropdown'>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">The Foundation <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#foundation">The Foundation</a></li>
<li><a href="#foundation">Our Mission</a></li>
<li><a href="#foundation">About</a></li>
<li><a href="#foundation">Governing Board</a></li>
<li><a href="#foundation">Youth Services</a></li>
</ul>
</li>
-->
<li><a href="#foundation">Foundation</a></li>
<li><a href="#jesseowens">Jesse Owens</a></li>
<li><a href="#scholarship">Ruth + Jesse Scholarship Program</a></li>
<li><a href="#contribute">Contribute</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<ul id="social-nav">
<li class="social-bug fb"><a href="https://www.facebook.com/" target="_blank" class="icon-facebook"></a></li>
<li class="social-bug tw"><a href="https://twitter.com/" target="_blank" class="icon-twitter"></a></li>
</ul>
</div>
</div>
<div id="nav-drop-cover"></div>
</header>