-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·71 lines (49 loc) · 2.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title><?php wp_title(); ?></title>
<link rel="profile" href="http://gmgp.org/xfn/11" />
<link href='http://fonts.googleapis.com/css?family=PT+Serif:400,700,400italic,700italic|Bad+Script' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php bloginfo( 'template_directory' ); ?>/css/skeleton.css" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php bloginfo( 'template_directory' ); ?>/css/layout.css" type="text/css" media="screen" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="<?php bloginfo( 'template_directory' ); ?>/css/ie7.css" type="text/css" media="screen" />
<![endif]-->
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19092842-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body <?php body_class(''); ?>>
<div class="skylark-banner">
<div class="container">
<p>SKYLARK is now available! Order from:
<a href="http://www.indiebound.org/hybrid?filter0=skylark+spooner&x=0&y=0" target="_blank" class="indiebound button">IndieBound</a>
<a href="http://www.amazon.com/Skylark-The-Trilogy-Meagan-Spooner/dp/0761388656/ref=sr_1_1?ie=UTF8&qid=1340994741&sr=8-1&keywords=skylark+spooner" target="_blank" class="amazon button">Amazon</a>
<a href="http://www.barnesandnoble.com/w/skylark-meagan-spooner/1108477575?ean=9780761388654" target="_blank" class="barnesandnoble button">Barnes & Noble</a>
<a href="http://www.bookdepository.com/Skylark-Meagan-Spooner/9780761388654" target="_blank" class="bookdepository button">The Book Depository</a></p>
</div>
</div>
<header>
<div class="container">
<h1 class="site-title"><a href="<?php echo get_home_url(); ?>"><?php bloginfo('name') ?></a></h1>
<nav>
<div class="table">
<?php wp_nav_menu(); ?>
</div>
</nav>
</div>
</header>
<div class="container container-twelve">