-
Notifications
You must be signed in to change notification settings - Fork 349
/
Copy pathheader.php
106 lines (67 loc) · 2.38 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
<?php
/*
This is the template for the hedaer
@package sunsettheme
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<title><?php bloginfo( 'name' ); wp_title(); ?></title>
<meta name="description" content="<?php bloginfo( 'description' ); ?>">
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php if( is_singular() && pings_open( get_queried_object() ) ): ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?>
<?php wp_head(); ?>
<?php
$custom_css = esc_attr( get_option( 'sunset_css' ) );
if( !empty( $custom_css ) ):
echo '<style>' . $custom_css . '</style>';
endif;
?>
</head>
<body <?php body_class(); ?>>
<div class="sunset-sidebar sidebar-closed">
<div class="sunset-sidebar-container">
<a class="js-toggleSidebar sidebar-close">
<span class="sunset-icon sunset-close"></span>
</a>
<div class="sidebar-scroll">
<?php get_sidebar(); ?>
</div><!-- .sidebar-scroll -->
</div><!-- .sunset-sidebar-container -->
</div><!-- .sunset-sidebar -->
<div class="sidebar-overlay js-toggleSidebar"></div>
<div class="container-fluid">
<div class="row">
<header class="header-container background-image text-center" style="background-image: url(<?php header_image(); ?>);">
<a class="js-toggleSidebar sidebar-open">
<span class="sunset-icon sunset-menu"></span>
</a>
<div class="header-content table">
<div class="table-cell">
<h1 class="site-title sunset-icon">
<span class="sunset-logo"></span>
<span class="hide"><?php bloginfo( 'name' ); ?></span>
</h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</div><!-- .table-cell -->
</div><!-- .header-content -->
<div class="nav-container">
<nav class="navbar navbar-sunset">
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'nav navbar-nav',
'walker' => new Sunset_Walker_Nav_Primary()
) );
?>
</nav>
</div><!-- .nav-container -->
</header><!-- .header-container -->
</div><!-- .row -->
</div><!-- .container-fluid -->