-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·69 lines (40 loc) · 1.86 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
<!DOCTYPE html>
<!--[if lt IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html <?php language_attributes(); ?> class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--><html <?php language_attributes(); ?> class="no-js"><!--<![endif]-->
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<!-- DNS Prefetch -->
<link rel="dns-prefetch" href="//www.google-analytics.com">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<!-- Meta -->
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="<?php bloginfo('description'); ?>">
<script type="text/javascript" src="//use.typekit.net/kga3eld.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/normalize.css" />
<!-- CSS + jQuery + JavaScript -->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="clearfix">
<div class="container clearfix">
<div class="col col1 gutter"></div>
<div class="col col10 wide-content">
<img class="h1" src="<?php echo get_template_directory_uri(); ?>/img/blog.png" />
<nav>
<?php html5blank_nav(); ?>
</nav>
</div>
<div class="col col1 gutter"></div>
</div>
</header>
<?php return false ?>
<!-- Logo -->
<div id="logo">
<a href="<?php echo home_url(); ?>">
<!-- SVG Logo - toddmotto.com/mastering-svg-use-for-a-retina-web-fallbacks-with-png-script -->
<img src="<?php echo get_template_directory_uri(); ?>/img/logo.svg" alt="Logo">
</a>
</div>