-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathheader.php
executable file
·92 lines (82 loc) · 3.68 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
85
86
87
88
89
90
91
92
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package _bootstraps
* @package _bootstraps - 2013 1.0
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
<?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'wedevs' ), max( $paged, $page ) );
?>
</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="hfeed site">
<?php do_action( 'before' ); ?>
<header id="masthead" class="site-header" role="banner">
<div class="container">
<div class="row">
<div class="span12 header">
<hgroup>
<h1 class="site-title"><a href="<?php echo home_url( '#/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?> <small> - <?php bloginfo( 'description' ); ?></small></a></h1>
</hgroup>
<span class="loading"><span class="image"></span>Loading...</span>
</div><!-- .span12 -->
</div><!-- .row -->
</div><!-- .container -->
<div class="menu-container">
<div class="container">
<div class="row">
<div class="span12">
<nav role="navigation" class="site-navigation main-navigation clearfix">
<h1 class="assistive-text"><i class="icon-reorder"></i> <?php _e( 'Menu', 'wedevs' ); ?></h1>
<div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'wedevs' ); ?>"><?php _e( 'Skip to content', 'wedevs' ); ?></a></div>
<?php
if( has_nav_menu('primary') ) {
wp_nav_menu(
array(
'theme_location' => 'primary',
'container_id' => 'navigation',
'container_class' => 'site-main-menu',
'walker' => new Bootstrap_Walker_Nav_Menu()
)
);
}
?>
</nav><!-- .site-navigation .main-navigation -->
</div><!-- .span12 -->
</div><!-- .row -->
</div><!-- .container -->
</div> <!-- .menu-container -->
</header><!-- #masthead .site-header -->
<div id="main" class="site-main">
<div class="container content-wrap">
<div class="row">