-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·59 lines (49 loc) · 1.89 KB
/
header.php
File metadata and controls
executable file
·59 lines (49 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
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?>
<?php if (is_search()) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php } ?>
<meta property="og:title" content="<?php the_title(); ?>" />
<meta property="og:site_name" content="<?php bloginfo('name') ?>">
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
<!-- Typekit -->
<script src="https://use.typekit.net/hbk2blk.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
</head>
<body <?php body_class(); ?>>
<?php // Main Content ?>
<main class="main--container">
<header class="container">
<div class="row">
<div class="col-8" style="padding-left:0px;">
<h1 class="branding"><a href="<?php echo home_url(); ?>"><span>Phonix Design Week</span></a></h1>
<h2>Phoenix Design Week • October 21-28, 2016</h2>
</div>
<div class="col-4 header-buy-menu">
<a href="https://www.eventbrite.com/e/method-madness-conference-phxdw-2016-tickets-24939107542" class="buynow">
Buy Method + Madness Tickets
</a>
<div class="nifty-burger">
<a id="nifty-nav-toggle" ><span></span></a>
</div>
<?php // Nifty Nav Panel ?>
<div class="nifty-panel">
<div class="container">
<div class="row">
<div class="col-12 text-right" style="padding: 0;">
<?php wp_nav_menu(array('theme_location' => 'primary')); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</header>