-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
29 lines (25 loc) · 1.07 KB
/
header.php
File metadata and controls
29 lines (25 loc) · 1.07 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
<?php $home_menu = is_home() && get_theme_mod('show_section_banner', false); ?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php bloginfo('title'); wp_title(); ?></title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
</head>
<body <?= $home_menu ? ' class="landing"' : '' ?>>
<!-- Header -->
<header id="header"<?= $home_menu ? ' class="alt"' : '' ?>>
<h1><strong><a href="/"><?php bloginfo('name'); ?></a></strong> <?php bloginfo('description'); ?></h1>
<nav id="nav">
<?php
wp_nav_menu(array(
'theme_location' => 'primary',
'container' => 'ul'
));
?>
</nav>
</header>
<a href="#menu" class="navPanelToggle"><span class="fa fa-bars"></span></a>