-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
91 lines (65 loc) · 2.25 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
<?php
session_start();
/**
* The Header for our theme.
* Displays all of the <head> section and everything up till <div id="content">
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<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' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script>
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/ie.css" type="text/css">
<![endif]-->
<?php
if ( ! function_exists( '_wp_render_title_tag' ) ) :
function zerif_old_render_title() {
?>
<title><?php wp_title( '-', true, 'right' ); ?></title>
<?php
}
add_action( 'wp_head', 'zerif_old_render_title' );
endif;
wp_head(); ?>
</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;
global $wp_customize;
/* Preloader */
if(is_front_page() && !isset( $wp_customize ) && get_option( 'show_on_front' ) != 'page' ):
$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">
<div id="main-nav" class="navbar navbar-inverse bs-docs-nav" role="banner">
<div class="container">
<div class="logo_text row-fluid">
<h2 style="display: inline-block;"><a href="<?php echo home_url();?>"></501code></a></h2>
<?php
github_login();
?>
</div>
<?php
if(isset($_GET['submitted'])){
print '<div class="row-fluid alert alert-success" role="alert">Successfully submitted! You will be notified once your project has been reviewed!</div>';
}
?>
</div>
</div>
<!-- / END TOP BAR -->