forked from natejones/wpds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·67 lines (49 loc) · 3 KB
/
header.php
File metadata and controls
executable file
·67 lines (49 loc) · 3 KB
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
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!-- Consider adding an manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?></title>
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<!-- Force a page reload every hour & don't cache anything -->
<meta http-equiv="refresh" content="3600">
<meta http-equiv="pragma" content="nocache">
<!-- Matt Wilcox's Adaptive Images adaptive-images.com
You'll need to edit the .htaccess in your Wordpress root directory
You'll also need to move adaptive-images.php to your Wordpress root directory
-->
<script>document.cookie='resolution='+Math.max(screen.width,screen.height)+'; path=/';</script>
<!-- Included Foundation CSS Files -->
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/foundation.css">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/app.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
<!--[if lt IE 9]>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/ie.css">
<![endif]-->
<!-- IE Fix for HTML5 Tags -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicon and Feed -->
<link rel="shortcut icon" type="image/png" href="<?php echo get_template_directory_uri(); ?>/favicon.png">
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> Feed" href="<?php echo home_url(); ?>/feed/">
<!-- Google Web Fonts
Find one you like at http://www.google.com/webfonts
Change line 74 in /css/foundation.css to include the updated font name -->
<link href='http://fonts.googleapis.com/css?family=Magra:700,400' rel='stylesheet' type='text/css'>
<link href="<?php echo get_template_directory_uri(); ?>/css/fontawesome.css" rel="stylesheet" media="screen and (min-width: 767px)" type='text/css'>
<link href="<?php echo get_template_directory_uri(); ?>/css/climacons.css" rel="stylesheet" media="screen and (min-width: 767px)" type='text/css'>
<script src="<?php echo get_template_directory_uri(); ?>/js/modernizr.foundation.js"></script>
<?php wp_head(); ?>
</head>
<body id="body">
<!-- Start the main container -->
<div id="container" class="container" role="document">
<!-- <div id="location" class="hide-for-small"><?php $str = site_url(); $regex = '/(?<!href=["\'])http:\/\//'; $str = preg_replace($regex, '', $str); echo $str; ?></div> -->
<!-- Row for main content area -->
<div id="main" class="row">