-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
42 lines (40 loc) · 1.39 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
<!DOCTYPE HTML>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content='Warren "Outte" McCoy Jr'>
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico">
<title><?php bloginfo('name'); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!--Primary Container-->
<div id="main-container">
<!--Header Nav-->
<div id="header-nav">
<nav class="navbar navbar-inverse">
<div class="container">
<div class="col-md-12">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#nav">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a>
</div>
<div class="collapse navbar-collapse navbar-right" id="nav">
<?php
$args = array( 'theme_location' => 'primary',
'container' => 'ul',
'menu_class' => 'nav navbar-nav' );
?>
<?php wp_nav_menu( $args ); ?>
</div>
</div>
</div>
</nav>
<!--/Header Nav-->
</div>