-
Notifications
You must be signed in to change notification settings - Fork 4
/
header.php
36 lines (36 loc) · 1.99 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
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Dave Gamache: Designer & Developer. <?php wp_title(); ?></title>
<meta name="description" content="Dave Gamache: Designer and Developer at Twitter in San Francisco">
<meta name="author" content="Dave Gamache, @dhg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="alternate" type="application/rss+xml" title="RSS Feed for davegamache.com" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="shortcut icon" type="image/x-icon" href="<?php bloginfo('stylesheet_directory'); ?>/favicon.ico">
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.1.7.1.min.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.fittext.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/app.js"></script>
<script type="text/javascript" src="http://use.typekit.com/cjx7kil.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script src="<?php echo get_template_directory_uri(); ?>/js/respond.min.js"></script>
</head>
<body>
<div class="wrapper">
<nav class="nav<?php if($postMeta["white_header"] == "true"){ ?> white<?php } if($postMeta["category"]) { ?> fixed<?php } ?>">
<a id="logo" href="<?php bloginfo('url'); ?>">
<h1>DG</h1>
</a>
<ul class="nav-primary">
<li><a href="<?php bloginfo('url'); ?>/articles">Articles</a></li>
<li>/</li>
<li><a href="<?php bloginfo('url'); ?>/about">About</a></li>
</ul>
</nav>