-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
75 lines (67 loc) · 2.64 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
72
73
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package wpcontributorday
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600" rel="stylesheet" type="text/css" />
<!--[if lte IE 8]><script src="wp-content/themes/wpcontributorday/js/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="wp-content/themes/wpcontributorday/css/dashicons.css" />
<script src="wp-content/themes/wpcontributorday/js/jquery.min.js"></script>
<script src="wp-content/themes/wpcontributorday/js/jquery.dropotron.min.js"></script>
<script src="wp-content/themes/wpcontributorday/js/skel.min.js"></script>
<script src="wp-content/themes/wpcontributorday/js/skel-panels.min.js"></script>
<script src="wp-content/themes/wpcontributorday/js/init.js"></script>
<?php //wp_head(); ?>
<noscript>
<link rel="stylesheet" href="wp-content/themes/wpcontributorday/css/skel-noscript.css" />
<link rel="stylesheet" href="wp-content/themes/wpcontributorday/css/style.css" />
<link rel="stylesheet" href="wp-content/themes/wpcontributorday/css/style-desktop.css" />
<link rel="stylesheet" href="wp-content/themes/wpcontributorday/css/style-noscript.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="wp-content/themes/wpcontributorday/css/ie8.css"/><![endif]-->
</head>
<body class="homepage">
<!-- Header -->
<div id="masthead">
<!-- Inner -->
<div class="inner row">
<div class="5u">
<img src="<?php echo get_template_directory_uri().'/images/logo-filled-small.png'?>" alt="<?php bloginfo( 'name' ); ?>" id="logo">
</div>
<div class="7u">
<header>
<h1><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
<hr />
<span class="byline">1<sup>st</sup> March 2014</span>
</header>
<footer>
<a href="#locations" class="button scrolly">Locations</a>
</footer>
</div>
</div>
<!-- Nav -->
<!-- <nav id="site-nav" class="j">-->
<!-- --><?php
// $navArgs = array(
// 'theme_location'=> 'primary',
// 'container' => false,
// 'container_class' => 'jenn'
// );
// wp_nav_menu( $navArgs );
//
// ?>
<!-- </nav>-->
</div>