This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
46 lines (32 loc) · 1.66 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="initial-scale=1.6; maximum-scale=1.0; width=device-width; "/>
<title><?php wp_title(''); ?></title>
<!-- Included CSS Files -->
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- Header Row -->
<div class="row">
<!-- Header Column -->
<div class="twelve columns" id="access" role="navigation">
<span id="skipnav" class="show-for-small"><a href="#content">Skip to Content?</a></span>
<!-- Site Description & Title -->
<hgroup id="header">
<h2><a href="<?php echo site_url(); ?>"><?php bloginfo('title'); ?></a></h2>
<h4 class="subheader"><?php bloginfo('description'); ?></h4>
</hgroup>
<!-- Navigation -->
<?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'menu_class' => 'nav-bar', 'fallback_cb' => 'foundation_page_menu', 'container' => 'nav', 'container_class' => 'twelve columns', 'walker' => new foundation_navigation() ) ); ?>
</div>
<!-- Header Column -->
</div>
<!-- Header Row -->