-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathheader.php
More file actions
56 lines (52 loc) · 1.88 KB
/
header.php
File metadata and controls
56 lines (52 loc) · 1.88 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
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
<?php
/**
* The template for displaying the header.
*
* Displays all of the <head> section, `wp_title`, `wp_head`, the navigation
* and everything up to div#content.
*
* @package Mayer
* @since 1.0.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 wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php do_action( 'before' ); ?>
<div id="top-navigation-wrapper">
<div class="container navigation">
<div class="col-lg-8 col-md-8">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only"><?php _e( 'Toggle Navigation', 'mayer' ); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button><!-- .navbar-toggle -->
<?php get_template_part( 'partials/navigation' ); ?>
</div><!-- .col-lg-12 -->
<div class="col-lg-4 col-md-4 hidden-sm hidden-xs pull-right">
<div class="container pull-right">
<?php get_template_part( 'partials/social-icons' ); ?>
</div><!-- .container -->
</div><!-- .col-lg-3 -->
</div><!-- .navigation -->
</div><!-- /#top-navigation-wrapper -->
<header id="masthead" role="banner">
<div class="container">
<?php if ( is_rtl() ) { ?>
<?php get_template_part( 'partials/title' ); ?>
<?php get_template_part( 'partials/avatar' ); ?>
<?php } else { ?>
<?php get_template_part( 'partials/avatar' ); ?>
<?php get_template_part( 'partials/title' ); ?>
<?php } ?>
</div><!-- .container -->
</header><!-- #masthead -->