-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader-other.php
87 lines (85 loc) · 4.17 KB
/
header-other.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>EMA Roofing</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="<?php echo get_template_directory_uri().'/assets/img/favicon.png'; ?>">
<?php wp_head(); ?>
</head>
<body class="sticky-header">
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- ScrollUp Start Here -->
<a href="#wrapper" data-type="section-switch" class="scrollup">
<i class="fas fa-angle-double-up"></i>
</a>
<!-- ScrollUp End Here -->
<!-- Preloader Start Here -->
<div id="preloader"></div>
<!-- Preloader End Here -->
<div id="wrapper" class="wrapper">
<!-- Add your site or application content here -->
<!-- Header Area Start Here -->
<header class="header">
<div id="header-topbar" class="bg-accent pd-x-85">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<div class="header-topbar-layout1">
<ul class="header-top-left">
<li><i class="fas fa-envelope"></i>E-mail: [email protected]</li>
<li><i class="far fa-clock"></i>Hours: Mon-Fri: 8.00 am - 7.00 pm</li>
</ul>
</div>
</div>
<div class="col-lg-6 d-flex justify-content-end">
<div class="header-topbar-layout1">
<ul class="header-top-right">
<li><i class="fas fa-phone-volume"></i>+ 847 276 3231</li>
<li class="social-icon">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-google-plus-g"></i></a>
<a href="#"><i class="fab fa-yelp"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="rt-sticky-placeholder"></div>
<div id="header-menu" class="header-menu menu-layout1 pd-x-85">
<div class="container-fluid">
<div class="row d-flex align-items-center">
<div class="col-lg-2">
<div class="logo-area">
<a href="/" class="temp-logo">
<img src="<?php echo get_template_directory_uri().'/assets/img/logo-dark.png'; ?>" alt="logo" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-7 d-flex justify-content-end possition-static">
<nav id="dropdown" class="template-main-menu">
<?php
wp_nav_menu( array( 'container' => 'ul', ));
?>
</nav>
</div>
<div class="col-lg-3 d-flex justify-content-end">
<div class="header-action-layout1">
<ul>
<li class="header-action-btn">
<a href="#" class="item-btn">GET A FREE ESTIMATE</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>