-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page.php
More file actions
114 lines (97 loc) · 5.03 KB
/
front-page.php
File metadata and controls
114 lines (97 loc) · 5.03 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
<?php
get_header();
?>
<!-- Header End -->
<!-- Hero section -->
<div class="banner">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 col-md-9 col-sm-10 col-11 m-auto">
<h1>
<?php echo get_theme_mod('home_title');?>
</h1>
<h2><?php echo get_theme_mod('home_subtitle');?></h2>
<span><?php echo get_theme_mod('home_description');?></span>
<div class="bnr-btns">
<a href="https://jobs.techflyte.com/"><?php _e('Jobs','techflyte');?></a>
<a href="<?php esc_html_e('services','techflyte');?>"><?php _e('Clients','techflyte');?></a>
</div>
</div>
</div>
</div>
</div>
<!-- Hero section End -->
<!-- Resume Section -->
<div class="resume">
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<h3>
<?php echo get_theme_mod('resume_title');?>
</h3>
<p>
<?php echo get_theme_mod('resume_description');?></h3>
</p>
<a href="<?php esc_html_e('resume','techflyte');?>"><?php echo _e('Upload Resume ','techflyte'); ?><img src=<?php echo get_template_directory_uri( );?>/assets/images/upload-img.png" alt=""></a>
</div>
<div class="col-md-6">
<div class="resume-box">
<img class="img-fluid" src="<?php echo get_theme_mod('resume_image');?>" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- Resume Section End -->
<!-- Techflyte Section -->
<div class="techflyte">
<div class="container-fluid">
<div class="row">
<div class="col-xl-8 col-lg-9 col-md-11 col-sm-10 m-auto">
<div class="row">
<div class="col-12">
<h2><?php echo get_theme_mod('why_title');?></h2>
<p> <?php echo get_theme_mod('why_description');?></p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="techflyte-box">
<img class="img-fluid m-auto d-block" src="images/benefits-img.png" alt="">
<h4><?php _e('Experience','techflyte'); ?></h4>
<p>
<?php echo get_theme_mod('experience_description');?>
</p>
</div>
</div>
<div class="col-md-4">
<div class="techflyte-box">
<img class="img-fluid m-auto d-block" src="images/safety-img.png" alt="">
<h4><?php _e('Reputation','techflyte'); ?></h4>
<p>
<?php echo get_theme_mod('reputation_description');?>
</p>
</div>
</div>
<div class="col-md-4">
<div class="techflyte-box">
<img class="img-fluid m-auto d-block" src="images/comments-img.png" alt="">
<h4><?php _e('Solutions','techflyte'); ?></h4>
<p>
<?php echo get_theme_mod('solution_description');?>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12 text-center">
<a class="contract-btn" href="<?php esc_html_e('contact','techflyte');?>"><?php _e('Let\'s Talk','techflyte');?></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Techflyte Section End -->
<!-- Footer Section -->
<?php get_footer(); ?>