-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-team.php
More file actions
72 lines (65 loc) · 3.28 KB
/
page-team.php
File metadata and controls
72 lines (65 loc) · 3.28 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
<?php
$url = get_template_directory_uri( ) . '/assets/images';
?>
<?php get_header(); ?>
<div class="team-banner inner-page-bnr">
<div class="container-fluid">
<div class="row">
<div class="col-12 m-auto">
<h2><?php _e('Our'); ?> <span><?php _e('Team','techflyte'); ?></span></h2>
</div>
</div>
</div>
</div>
<!-- Hero section End -->
<!-- Team section -->
<div class="our-team">
<div class="container-fluid">
<div class="row">
<div class="col-xl-11 col-lg-12 m-auto text-center">
<h2><?php _e('Team ','techflyte');?><b><?php bloginfo('name');?></b></h2>
<p>
<?php echo get_theme_mod('team_description');?>
</p>
</div>
</div>
<div class="row justify-content-center">
<?php get_template_part('partials/content','team');?>
</div>
<div class="row mt-xl-5 mt-lg-4 mt-md-3">
<div class="col-lg-6">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true"><img src="<?php echo $url;?>/approach-img.png" alt=""><?php _e('APPROACH','techflyte');?></a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false"><img src="<?php echo $url;?>/start-img.png" alt=""><?php _e('METHODS','techflyte');?></a>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
<p>
<?php echo get_theme_mod('approach_description'); ?>
</p>
</div>
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">
<p>
<?php echo get_theme_mod('method_description'); ?>
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="team-detail">
<h6>
<?php echo get_theme_mod('team_secondary_title');?>
</h6>
<p>
<?php echo get_theme_mod('team_secondary_description');?>
</p>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>