-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
69 lines (51 loc) · 2.21 KB
/
header.php
File metadata and controls
69 lines (51 loc) · 2.21 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
68
69
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title('|', true, 'right'); ?><?php bloginfo('name'); ?></title>
<meta name="description" content="<?php bloginfo('description'); ?>">
<meta name="author" content="<?php the_author(); ?>">
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1, maxmum-scale=1">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans|Quicksand|Sorts+Mill+Goudy" rel="stylesheet">
<link rel="shortcut icon" herf="<?php print IMAGES; ?>/icons/favicon.ico">
<link rel="apple-touch-icon" herf="<?php print IMAGES; ?>/icons/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" herf="<?php print IMAGES; ?>/icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" herf="<?php print IMAGES; ?>/icons/apple-touch-icon-114x114.png">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="main">
<div class ="headerInner" role="navigation">
<div class="logo">
<div class="logo-cont">
<h2 class="styleNone">
<a href="http://random.sprinklewithsalt.com"><?php bloginfo('name'); ?></a>
</h2>
<h4 class="styleNone">
<a href="http://random.sprinklewithsalt.com"><?php bloginfo('description'); ?></a>
</h4>
</div>
</div>
<nav class="topMain">
<?php wp_nav_menu(array(
'menu_class' => 'noStyle',
'container_class' => 'list',
'theme_location' => 'menu'
)); ?>
<!---RANDOM RESPONSIVE STUFF--->
<div class="mobile-navigation" id="rwd-top-nav-btn">
<div id="rwd-navbutton">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
</div>
</header>
<div id="rwd-top-nav"></div> <!--end rwd-top-nav-->