-
Notifications
You must be signed in to change notification settings - Fork 349
/
Copy pathheader.php
82 lines (53 loc) · 1.84 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
<?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="container-fluid">
<div class="row">
<header class="header-container background-image text-center" style="background-image: url(<?php header_image(); ?>);">
<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 -->