forked from Codeinwp/zerif-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
135 lines (82 loc) · 2.95 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
/**
* The Header for our theme.
* Displays all of the <head> section and everything up till <div id="content">
*
* @package zerif-lite
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<?php zerif_top_head_trigger(); ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
<?php zerif_bottom_head_trigger(); ?>
</head>
<?php if ( isset( $_POST['scrollPosition'] ) ) : ?>
<body <?php body_class(); ?> onLoad="window.scrollTo(0,<?php echo intval( $_POST['scrollPosition'] ); ?>)">
<?php else : ?>
<body <?php body_class(); ?> >
<?php
endif;
zerif_top_body_trigger();
/* Preloader */
if ( is_front_page() && ! is_customize_preview() ) :
$zerif_disable_preloader = get_theme_mod( 'zerif_disable_preloader' );
if ( isset( $zerif_disable_preloader ) && ($zerif_disable_preloader != 1) ) :
echo '<div class="preloader">';
echo '<div class="status"> </div>';
echo '</div>';
endif;
endif;
?>
<div id="mobilebgfix">
<div class="mobile-bg-fix-img-wrap">
<div class="mobile-bg-fix-img"></div>
</div>
<div class="mobile-bg-fix-whole-site">
<header id="home" class="header" itemscope="itemscope" itemtype="http://schema.org/WPHeader">
<div id="main-nav" class="navbar navbar-inverse bs-docs-nav" role="banner">
<div class="container">
<?php zerif_before_navbar_trigger(); ?>
<div class="navbar-header responsive-logo">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only"><?php _e( 'Toggle navigation','zerif-lite' ); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand" itemscope itemtype="http://schema.org/Organization">
<?php
if ( has_custom_logo() ) {
the_custom_logo();
} else {
?>
<div class="site-title-tagline-wrapper">
<h1 class="site-title">
<a href=" <?php echo esc_url( home_url( '/' ) ); ?> ">
<?php bloginfo( 'title' ); ?>
</a>
</h1>
<?php
$description = get_bloginfo( 'description', 'display' );
if ( ! empty( $description ) ) :
?>
<p class="site-description">
<?php echo $description; ?>
</p> <!-- /.site-description -->
<?php elseif ( is_customize_preview() ) : ?>
<p class="site-description"></p>
<?php endif; ?>
</div> <!-- /.site-title-tagline-wrapper -->
<?php } ?>
</div> <!-- /.navbar-brand -->
</div> <!-- /.navbar-header -->
<?php zerif_primary_navigation_trigger(); ?>
</div> <!-- /.container -->
<?php zerif_after_header_container_trigger(); ?>
</div> <!-- /#main-nav -->
<!-- / END TOP BAR -->