-
Notifications
You must be signed in to change notification settings - Fork 4
/
header.php
46 lines (43 loc) · 1.13 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
<?php namespace Lean;
/**
* The main header file.
*
* @package Lean
* @since 1.0.0
*/
?>
<!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>
<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(); ?>>
<header class="header wrap" role="banner"
itemscope="itemscope" itemtype="http://schema.org/WPHeader">
<div class="header__branding">
<div class="header__title">
<h1>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</h1>
</div>
<div class="header__description">
<?php bloginfo( 'description' ) ?>
</div>
</div>
<nav role="navigation" itemscope="itemscope" class="primary__navigation"
itemtype="http://schema.org/SiteNavigationElement">
<?php
$args = [
'theme_location' => 'primary-navigation',
];
wp_nav_menu( $args );
?>
</nav>
</header>