-
Notifications
You must be signed in to change notification settings - Fork 0
/
header-color.php
95 lines (83 loc) · 3.3 KB
/
header-color.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
<?php
/**
*
* Template name: header-color.php
* header file for seperate pages other than the home page
*
*/
?>
<!DOCTYPE html>
<html <?php language_attributes( );?>>
<head>
<meta charset="<?php bloginfo('charset')?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<?php wp_head();?>
</head>
<body>
<!-- header area -->
<header class="header-area">
<div class="nav-color">
<div class="container">
<nav class="nav">
<a href="" class="link nav-brand text-light">
<?php
if (function_exists('the_custom_logo')){
the_custom_logo( );
}else{
bloginfo( 'name' );
}
?>
</a>
<!-- Toggle manu-->
<button class="toggle-button">
<span class="fas fa-hamburger"></span>
</button>
<!-- Navigation items-->
<div class="collapse" id="toggle-collapse">
<?php
//Display primary-menu
if (has_nav_menu('primary-menu')){
wp_nav_menu(array(
'theme-location' => 'primary-menu',
'container' => '',
'items_wrap' => '<ul class="navbar-nav mr-auto">%3$s</ul>'
));
}
?>
<!-- <ul class="navbar-nav mr-auto">
<li class="nav-link">
<a href="#" class="link text-light">Home</a>
</li>
<li class="nav-link">
<a href="#" class="link text-light">People</a>
</li>
<li class="nav-link">
<a href="#" class="link text-light">Design</a>
</li>
<li class="nav-link">
<a href="#" class="link text-light">Travel</a>
</li>
<li class="nav-link">
<a href="#" class="link text-light">About Us</a>
</li>
</ul>-->
<div class="search">
<?php
//get searchform.php template file
get_search_form();?>
<!--
<form class="form-group">
<input type="search" class="input-control mr-sm-2" placeholder="Search">
<button class="btn btn-submit" type="submit"><i class="fa fa-search"></i></button>
-->
</form>
</div>
</div>
</nav>
</div>
</div>
</header>
<!-- end header area -->
<!-- main site area -->
<main class="main-area">