-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
39 lines (31 loc) · 1.22 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
<?php
/**
* Theme header
*
* @package julep
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="page hfeed site">
<header id="masthead" class="site__header" role="banner" itemscope="itemscope" itemtype="http://schema.org/WPHeader">
<div class="site__header__branding">
<div class="site__header__title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></div>
<div class="site__header__description"><?php bloginfo( 'description' ); ?></div>
</div>
<nav id="primary-nav" class="site__header__nav" role="navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">
<?php
wp_nav_menu( array( 'theme_location' => 'primary-navigation' ) );
?>
</nav><!-- #site-navigation -->
</header><!-- #masthead -->
<main id="main" class="site__main" role="main">