-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·32 lines (32 loc) · 1.67 KB
/
Copy pathheader.php
File metadata and controls
executable file
·32 lines (32 loc) · 1.67 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<header class="header" role="banner">
<div class="container">
<div class="row items-center">
<div class="col col--lg-3 col--md-3 col--sm-6 col--xs-6">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="header__logo">
<img src="<?php echo esc_url( get_stylesheet_directory_uri() . '/img/logo.svg' ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" width="200" />
</a>
</div>
<div class="col col--lg-8 col--lg-start-5 col--md-8 col--md-start-5 col--sm-6 col--xs-6 align-text-right">
<div class="header__navigation">
<nav role="navigation">
<?php wp_nav_menu(['theme_location' => 'header', 'menu_class' => 'nav nav--header']); ?>
</nav>
</div>
<a href="#" class="nav-burger js-menu-toggle">
<span class="nav-burger__line"></span>
<span class="nav-burger__line"></span>
<span class="nav-burger__line"></span>
</a>
</div>
</div>
</div>
</header>