-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·84 lines (69 loc) · 2.9 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package A-P Corp 1.0
*/
?>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.css">
<?php wp_head(); ?>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.js"></script>
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700|Roboto+Slab:400,700' rel='stylesheet' type='text/css'>
</head>
<body <?php body_class(); ?>>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'apcorp' ); ?></a>
<header id="masthead" class="site-header container" role="banner">
<div class="row">
<div id="logo" class="col-xs-4 col-sm-4 col-md-3">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img src="<?php echo get_template_directory_uri(); ?>/images/ap_logo_300x249.png">
</a>
</div>
<div class="col-xs-8 col-sm-8 col-md-9">
<div class="site-branding">
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</div><!-- .site-branding -->
</div>
<nav id="site-navigation" class="col-xs-offset-0 col-xs-12 col-sm-offset-0 col-sm-12 col-md-9 col-md-offset-3 main-navigation" role="navigation">
<div class="menu-button hidden"><?php _e( 'Primary Menu', 'apcorp' ); ?></div>
<?php
$menu_args = array(
'theme_location' => 'topmenubar',
'menu' => '',
'container' => 'div',
'container_class' => '',
'container_id' => 'menu-topmenubar',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul data-breakpoint="750" id="%1$s" class=" %2$s">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $menu_args );
?>
</nav><!-- #site-navigation -->
</div>
</header><!-- #masthead -->
<div id="content" class="site-content container">