-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
31 lines (21 loc) · 795 Bytes
/
header.php
File metadata and controls
31 lines (21 loc) · 795 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title><?php wp_title('|', true, 'right'); ?><?php bloginfo('name'); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php /* STYLESHEETS: All stylesheets are loaded with wp_enqueue_style in functions.php */ ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header id="header" class="clear">
<div class="row">
<div id="masthead">
<h1 class="site-title"><a href="<?php echo home_url( "/" ); ?>"><?php bloginfo( "name" ); ?></a></h1>
</div>
<nav id="menu">
<input type="checkbox" id="toggle"><label for="toggle">Menu</label>
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'container' => false, 'menu_class' => 'dropmenu target' )); ?>
</nav>
</div><!-- row -->
</header>
<main>