-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-contractor.php
119 lines (110 loc) · 4.97 KB
/
page-contractor.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php get_header();?>
<?php $img_url = get_template_directory_uri( ) . "/assets"; ?>
<!-- Hero section -->
<div class="contractor-banner inner-page-bnr">
<div class="container-fluid">
<div class="row">
<div class="col-12 m-auto">
<h2><?php wp_title(" ");?></h2>
<h2><span><?php _e('Information','techflyte');?></span></h2>
</div>
</div>
</div>
</div>
<!-- Hero section End -->
<!-- Contractors section -->
<div class="contractors">
<div class="row align-items-center">
<div class="col-xl-7 col-lg-7">
<div class="sidebar-bnr">
<img src="<?php echo get_theme_mod('contract_image');?>" alt="">
</div>
</div>
<div class="col-xl-5 col-lg-5">
<div class="contractor-caption-box">
<h3><?php wp_title(" ");?> </h3>
<p>
<?php echo get_theme_mod('contract_description');?>
</p>
<a href="mailto:[email protected]"><?php _e('Jumpstart Your Career','techflyte');?></a>
</div>
</div>
</div>
</div>
<!-- Contractors section End -->
<!-- Staff Firm section -->
<div class="staff-firm contractor-process">
<div class="container-fluid">
<div class="row">
<div class="col-12 text-center">
<h2>
<?php echo get_theme_mod('service_title_two');?>
</h2>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="firm-col">
<div class="firm-col-head d-flex align-items-baseline justify-content-start">
<h4><?php _e('1','techflyte');?></h4>
<span><?php _e(' You Come First','techflyte');?></span>
<img class="img-fluid" src="<?php echo $img_url;?>/images/experience-img.png" alt="">
</div>
<p>
<?php echo get_theme_mod('constractor_step_one');?>
</p>
</div>
</div>
<div class="col-md-4">
<div class="firm-col">
<div class="firm-col-head d-flex align-items-baseline justify-content-start">
<h4><?php _e('2','techflyte');?></h4>
<span><?php _e(' Peace of Mind Promise','techflyte');?></span>
<img class="img-fluid" src="<?php echo $img_url;?>/images/hand-shaker.png" alt="">
</div>
<p>
<?php echo get_theme_mod('constractor_step_two');?>
</p>
</div>
</div>
<div class="col-md-4">
<div class="firm-col">
<div class="firm-col-head d-flex align-items-baseline justify-content-start">
<h4><?php _e('3','techflyte');?></h4>
<span><?php _e('Recruiting Professionals','techflyte');?></span>
<img class="img-fluid" src="<?php echo $img_url;?>/images/Professionals.png" alt="">
</div>
<p>
<?php echo get_theme_mod('constractor_step_three');?>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Staff Firm section End -->
<!-- Our Services section -->
<!-- Our Services section End -->
<!-- Information section -->
<div class="information">
<div class="container-fluid">
<div class="row">
<div class="col-12 text-center">
<h6><?php _e('INFORMATION','techfyte');?></h6>
<h2>
<?php _e('FREQUENTLY ASKED QUESTIONS','techflyte');?>
</h2>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="accordion row" id="accordionExample">
<?php get_template_part( 'partials/content','faq');?>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Information section End -->
<?php get_footer();?>