1
+ <!DOCTYPE html>
2
+
3
+ <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
4
+ <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"<?php language_attributes(); ?>> <![endif]-->
5
+ <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" <?php language_attributes(); ?>> <![endif]-->
6
+ <!--[if IE 8]> <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]-->
7
+ <!--[if gt IE 8]><!--> <html <?php language_attributes(); ?>> <!--<![endif]-->
8
+ <head>
9
+ <meta charset="utf-8" />
10
+
11
+ <title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>
12
+
13
+ <!-- Set the viewport width to device width for mobile -->
14
+ <meta name="viewport" content="initial-scale=1.6; maximum-scale=1.0; width=device-width; "/>
15
+
16
+ <!-- Schema.org Description -->
17
+ <meta itemprop="name" content="">
18
+ <meta itemprop="description" content="">
19
+
20
+ <!-- Setting favicon and Apple Touch Icon -->
21
+ <link rel="apple-touch-icon" href="<?php bloginfo ("template_url");?>/images/misc/apple-touch-icon.png">
22
+ <link rel="icon" type="image/png" href="<?php bloginfo ("template_url"); ?>/images/misc/favicon.ico">
23
+
24
+ <!-- Apple Developer Options -->
25
+ <meta name="apple-mobile-web-app-status-bar-style" content="black">
26
+ <meta name="apple-mobile-web-app-capable" content="yes">
27
+
28
+ <!-- Included CSS Files -->
29
+ <link rel="stylesheet" href="<?php bloginfo ("stylesheet_url"); ?>">
30
+
31
+ <!--[if lt IE 9]>
32
+ <link rel="stylesheet" href="stylesheets/ie.css">
33
+ <![endif]-->
34
+
35
+ <!-- IE Fix for HTML5 Tags -->
36
+ <!--[if lt IE 9]>
37
+ <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
38
+ <![endif]-->
39
+
40
+ <!-- Orbit IE Settings -->
41
+ <!--[if IE]>
42
+ <style type="text/css">
43
+ .timer { display: none !important; }
44
+ div.caption { background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);zoom: 1; }
45
+ </style>
46
+ <![endif]-->
47
+
48
+ <?php wp_head(); ?>
49
+
50
+ </head>
51
+ <body>
52
+
53
+ <!-- Begin Container -->
54
+ <div class="container" role="main">
55
+
56
+ <!-- Begin Skip Content -->
57
+ <nav class="row">
58
+ <div class="twelve columns hide-on-desktops"><a href="#skipcontent">Skip Content? ↓</a></div>
59
+ </nav>
60
+ <!-- End Skip Content -->
61
+
62
+ <!-- Begin Header -->
63
+ <header class="row">
64
+ <hgroup class="twelve columns">
65
+ <h1><a href="<?php echo home_url( '/' ); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
66
+ <h4 class="subheader"><?php bloginfo('description'); ?></h4>
67
+ </hgroup>
68
+ </header>
69
+ <!-- End Header -->
70
+
71
+ <!-- Begin Navigation -->
72
+ <div class="row">
73
+ <nav class="menu twelve columns">
74
+ <?php wp_nav_menu( array( 'theme_location' => 'header-menu') ); ?>
75
+ <hr>
76
+ </nav>
77
+ </div>
78
+ <!-- End Navigation -->
79
+
80
+
81
+
0 commit comments