-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
68 lines (49 loc) · 2.8 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
<!doctype html>
<html class="no-js" <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<!-- Force IE to use the latest rendering engine available -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php bloginfo('name'); ?> <?php wp_title('-'); ?></title>
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- Icons & Favicons -->
<link rel="icon" href="<?php echo get_template_directory_uri(); ?>/favicon.png">
<link href="<?php echo get_template_directory_uri(); ?>/library/images/apple-icon-touch.png" rel="apple-touch-icon" />
<!--[if IE]>
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">
<![endif]-->
<meta name="msapplication-TileColor" content="#f01d4f">
<meta name="msapplication-TileImage" content="<?php echo get_template_directory_uri(); ?>/library/images/win8-tile-icon.png">
<meta name="theme-color" content="#121212">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/library/css/styleie.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<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>
<![endif]-->
<?php wp_head(); ?>
<!-- Drop Google Analytics here -->
<!-- end analytics -->
</head>
<body <?php body_class(); ?>>
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyfifteen' ); ?></a>
<div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<div id="container">
<header class="header" role="banner">
<!-- This navs will be applied to the topbar, above all content
To see additional nav styles, visit the /partials directory -->
<?php // get_template_part( 'partials/nav', 'top-offcanvas' ); ?>
<div id="inner-header" class="row">
<div class="large-12 medium-12 columns">
</div>
<!-- This navs will be applied to the main, under the logo
To see additional nav styles, visit the /partials directory -->
<?php get_template_part( 'partials/nav', 'main-offcanvas' ); ?>
<button href="#" aria-label="Click or hit enter to scroll to the top of the page" class="scrollToTop"><span class="dashicons dashicons-arrow-up-alt2"></span></button>
</div> <!-- end #inner-header -->
</header> <!-- end .header -->