-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
164 lines (135 loc) · 4.45 KB
/
header.php
File metadata and controls
164 lines (135 loc) · 4.45 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
/**
* The header for our theme.
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package thehandymancan
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<link href='https://fonts.googleapis.com/css?family=Nunito:400,700' rel='stylesheet' type='text/css'>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<style>
<?php include("crit.min.css"); ?>
</style>
<div id="angiesOverlay" style="display: none;">
<div id="angiesSummary">
<h3>325 Verified Angies List Reviews</h3>
<div class="boogiebox">
<div class="xs-box">
<h4>Ratings</h4>
<strong>5*</strong> 262<br>
<strong>4*</strong> 14<br>
<strong>3*</strong> 13<br>
<strong>2*</strong> 9<br>
<strong>1*</strong> 27
</div>
<div class="xs-box">
<h4>Ratings Details</h4>
<strong>Professionalism:</strong> 4.8<br>
<strong>Price:</strong> 4.4<br>
<strong>Responsiveness:</strong> 4.8<br>
<strong>Punctuality:</strong> 4.8<br>
<strong>Quality:</strong> 4.8<br>
<strong>Overall:</strong> 4.7
</div>
</div>
</div>
</div>
<div class="site-overlay"></div>
<nav class="pushy visible-tab pushy-right">
<div>
<?php
$curpage= get_the_ID();
$urlext='';
if($curpage == 169){
$urlext='-dex';
wp_nav_menu( array( 'menu' => 'Main Dex' ) );
}else if($curpage == 182){
$urlext='-angies';
wp_nav_menu( array( 'menu' => 'Main Angies' ) );
}else{
wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) );
}
?>
</div>
</nav>
<div id="page" class="site">
<header id="masthead" class="site-header" role="banner">
<div class="top-wrapper">
<div class="logoholder top-left hidden-xs">
<img class="logo" src="/images/logobig-s.png"/>
</div>
<div class="top-middle">
<div class="site-branding">
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?> Inc<sup>®</sup></a></h1>
<a class="visible-xs menu-btn" href="#">
<i class="fa fa-bars"></i>
</a>
</div><!-- .site-branding -->
<nav id="site-navigation" class="main-navigation" role="navigation">
<span class="hidden-xs text-center">
<?php
if($curpage == 169){
wp_nav_menu( array( 'menu' => 'Main Dex' ) );
}else if($curpage == 182){
wp_nav_menu( array( 'menu' => 'Main Angies' ) );
}else{
wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) );
}
?>
</span>
</nav><!-- #site-navigation -->
</div>
<div class="top-logos text-right">
<?php
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
<?php
endif; ?>
<a href="#" id="angiesButton">
<img src="<?php echo get_template_directory_uri(); ?>/images/asv-angies-list1.png" width="120" height="57">
</a>
<a href="https://www.yelp.com/biz/the-handyman-can-saint-paul?osq=the+handy+man+can" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/old_stroke.png"></a>
</div>
<div class="clearfix"></div>
</div>
</header><!-- #masthead -->
<?php $curpage= get_the_ID();
if(is_front_page() || $curpage == 169 || $curpage == 182){ ?>
<div class="hero-section text-center">
<div class="wrapper">
<div class="hero-text">
<h2>Now Specializing In:</h2>
<h3>- "HONEY-DO" Lists<br>
- Bathroom Facelifts</h3>
<div class="boogiebox align-center cta-boxes">
<div class="sm-box">
<div class="cta-box">
<i class="fa fa-phone"></i> Call us now!<br>
<a onclick="return gtag_report_conversion('tel:715-406-4872');" href="tel:715-406-4872">Spooner WI (715) 406-4872</a><br>
Text (651) 308-6011
</div>
</div>
<div class="sm-box fillbox">
<div class="cta-box filler">
<a class="btn" href="/contact-us<?php echo $urlext; ?>">Contact us!</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php } ?>
<div id="content" class="site-content">