forked from Automattic/_s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
51 lines (42 loc) · 1.36 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
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package efektywnyaltruizm-org
*/
?>
<!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 wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="site">
<header id="masthead" class="page-header border-bottom">
<div class="container-fluid page-container">
<nav class="page-header__nav">
<?php the_custom_logo(); ?>
<span class="logo__text">
<?php echo highlight_first_world(get_bloginfo( 'name' )); ?>
</span>
<input type="checkbox" id="menu-toggle" class="main-menu__input"/>
<label for="menu-toggle" class="main-menu__label"></label>
<div class="menu-overlay"></div>
<?php
wp_nav_menu( array(
'theme_location' => 'menu-1',
'menu_id' => 'primary-menu',
'menu_class' => 'main-menu',
'container' => 'ul',
) );
?>
</nav>
</div>
</header><!-- #masthead -->