-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·28 lines (28 loc) · 1.08 KB
/
header.php
File metadata and controls
executable file
·28 lines (28 loc) · 1.08 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
<?php get_template_part( 'head' ); ?>
<?php wpbp_wrap_before(); ?>
<div id="wrap" role="document">
<?php wpbp_header_before(); ?>
<header id="header">
<?php wpbp_header_inside_before(); ?>
<div class="<?php wpbp_container_class(); ?>">
<div class="grid_4 mobile-center">
<div id="site-title">
<h1>
<a href="<?php echo home_url(); ?>/">
<?php bloginfo( 'name' ); ?>
</a>
</h1>
<h3>
<?php bloginfo( 'description' ); ?>
</h3>
</div>
</div>
<div class="grid_8 text-right mobile-center">
<nav id="main-nav">
<?php wp_nav_menu( array( 'theme_location' => 'primary_navigation' ) ); ?>
</nav>
</div>
</div>
<?php wpbp_header_inside_after(); ?>
</header>
<?php wpbp_header_after(); ?>