This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
unesco/header.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
108 lines (83 sloc)
3.75 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$secondary = get_option( 'parentSiteTitle',''); | |
$secondarylink = get_option( 'parentSiteLink',''); | |
?> | |
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7"> <![endif]--> | |
<!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7"> <![endif]--> | |
<!--[if IE 8]> <html class="ie ie8 lte9 lte8"> <![endif]--> | |
<!--[if IE 9]> <html class="ie ie9 lte9"> <![endif]--> | |
<!--[if IE 10]> <html class="ie ie10 lte10"> <![endif]--> | |
<!--[if gt IE 10]> <html class="ie gt10"> <![endif]--> | |
<!--[if !IE]><!--> | |
<html lang="en"> | |
<!--<![endif]--> | |
<!--[if lt IE 9]> | |
<script src="js/html5shiv.js"></script> | |
<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<title><?php the_title(); ?> › <?php bloginfo('name'); ?> › UCONN</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content="Jessika Mercado of UConn Web Dev Lab"> | |
<!-- =========== CSS Header ============ --> | |
<link href='https://fonts.googleapis.com/css?family=Montserrat:700,400' rel='stylesheet' type='text/css'> | |
<link href="<?php bloginfo( 'template_url' ); ?>/css/bootstrap.css" rel="stylesheet"> | |
<link href="<?php bloginfo( 'template_url' ); ?>/css/bootstrap-responsive.min.css" rel="stylesheet"> | |
<link href="<?php bloginfo( 'template_url' ); ?>/style.css" rel="stylesheet"> | |
<?php wp_head()?> | |
</head> | |
<body class="uc-blue"> | |
<!-- =========== UCONN header ============ --> | |
<?php if(function_exists('uconn_banner_hook')){uconn_banner_hook();}?> | |
<div id="unesco-top"> | |
<!-- =========== UNESCO Header ============ --> | |
<div id="un-head" class="row-fluid"> | |
<h3 class="container un-title"> | |
<span id="parent-site"><?php | |
if(strlen($secondary) > 0 && strlen($secondarylink) > 0){ | |
if(substr($secondarylink,0,4) != 'http'){ | |
$secondarylink = 'http://'.$secondarylink; | |
} | |
echo '<a href="'.$secondarylink.'">'.$secondary.'</a>'; | |
} | |
?></span> | |
<a href="<?php bloginfo('wpurl'); ?>"> UNESCO CHAIR <span><i>&</i> <em>Institute of Comparative Human Rights</em></span> </a> | |
</h3> | |
</div> | |
<!-- =========== Main Menu ============ --> | |
<div id="nav-hold" class="row-fluid"> | |
<div class="navbar container"> | |
<div class="navbar-inner"> <a class="btn btn-navbar clearfix" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> | |
<div id="main-nav" class="nav-collapse collapse"> | |
<?php | |
wp_nav_menu( | |
array( | |
'menu' => 'primary', /* menu name */ | |
'menu_class' => 'nav', | |
'menu_id' => 'nav-one', | |
'theme_location' => 'primary', /* where in the theme it's assigned */ | |
'container' => false, /* container class */ | |
'fallback_cb' => 'hale_main_nav_fallback', | |
'items_wrap' => '<ul id="%1$s" class="%2$s"><li><a href="'.home_url().'">Home</a></li>%3$s</ul>', | |
'walker' => new Bootstrap_Nav_Walker()/*, | |
'with_search' => true*/ | |
) | |
); | |
?> | |
</div> | |
<div id="trinity" class=""> | |
<ul class="nav nav-pills"> | |
<li class=""><a href="http://en.unesco.org" title="unesco"><img alt="Unesco-Logo" src="<?php bloginfo( 'template_url' ); ?>/img/_unesco.png"/></a></li> | |
<li><a href="http://www.unescochair.uconn.edu/" title="unesco at uconn"><img alt="Chair-Logo" src="<?php bloginfo( 'template_url' ); ?>/img/_chr-uconn.png" alt="Chair-Logo"/></a></li> | |
<li> <a href="http://www.un.org/en/" title="United nations"><img alt="United-Nations-Logo" src="<?php bloginfo( 'template_url' ); ?>/img/_united.png"/></a> </li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- =========== Start Content ============ --> | |
<div id="content" class="row-fluid"> | |
<div id="content-hold" class="container"> |