-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
77 lines (52 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
<?php
/*
This is the template for the hedaer
@package pktechietheme
*/
?>
<!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">
<!--
Ping Back
-->
<?php if( is_singular() && pings_open( get_queried_object() ) ): ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="container-fluid">
<div class="row">
<header class="header-container background-image text-center" style="background: #f1ede4;">
<div class="header-content table">
<div class="table-cell">
<h1 class="site-title pktechie-icon">
<img src="http://prazin.com/wp-content/uploads/2018/05/logo.svg" width="100" alt="pktechie" />
<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-deafult navbar-pktechie">
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'nav navbar-nav',
'walker' => new pktechie_Walker_Nav_Primary()
) );
?>
</nav>
</div><!-- .nav container -->
</header>
</div><!-- .row -->
</div><!-- .container-fluid -->