-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·51 lines (45 loc) · 1.89 KB
/
header.php
File metadata and controls
executable file
·51 lines (45 loc) · 1.89 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
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<link href="//www.google-analytics.com" rel="dns-prefetch">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<?php wp_head(); ?>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<script src="//s3.amazonaws.com/nwapi/nwmatcher/nwmatcher-1.2.5-min.js"></script>
<script src="//html5base.googlecode.com/svn-history/r38/trunk/js/selectivizr-1.0.3b.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.1.0/respond.min.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/rem.min.js"></script>
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/grid_ie.css">
<![endif]-->
<script>
// conditionizr.com
// conditionizr.config({
// assets: '<?php echo get_template_directory_uri(); ?>',
// tests: {}
// });
</script>
</head>
<body <?php body_class('antialiased'); ?>>
<div class="row">
<header id="bdimage" >
<?php if ( !get_header_image() ) : ?>
<?php if (is_single() || is_page()): ?>
<p class="h1"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></p>
<p><?php bloginfo('description'); ?></p>
<?php else : ?>
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
<p><?php bloginfo('description'); ?></p>
<?php endif; ?>
<?php else: ?>
<img width="100%" src="<?php header_image(); ?>" />
<?php endif; ?>
</header>
<nav class="top-bar" data-topbar>
<?php header_nav(); ?>
</nav>
</div>
<div class="row">