-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-loyalty.php
More file actions
54 lines (48 loc) · 2.32 KB
/
page-loyalty.php
File metadata and controls
54 lines (48 loc) · 2.32 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
<?php get_header(); ?>
<?php $url = get_template_directory_uri( ).'/assets/';
?>
<div class="loyalty-banner inner-page-bnr">
<div class="container-fluid">
<div class="row">
<div class="col-12 m-auto">
<h2><?php _e('TechFlyte','techflyte');?></h2>
<h2><span><?php _e('Flyers Plus Program','techflyte');?></span></h2>
</div>
</div>
</div>
</div>
<!-- Hero section End -->
<!-- Loyalty Program section -->
<div class="loyalty-program">
<div class="row">
<div class="col-12">
<div class="inner-content-wrap">
<h2><?php _e('TechFlyte Flyers Plus Program','techflyte');?></h2>
<div class="row">
<div class="col-lg-7">
<h4><?php echo get_theme_mod('loyalty_subtitle');?></h4>
<p>
<?php echo get_theme_mod('loyalty_description'); ?>
</p>
</div>
<div class="col-lg-5">
<div class="program-bnr">
<img class="img-fluid" src="<?php echo get_theme_mod('loyalty_image');?>" alt="">
</div>
</div>
</div>
<h5><?php _e('Flyers Plus Program Details','techflyte');?></h5>
<div class="row justify-content-center">
<?php get_template_part( 'partials/content','loyalty');?>
</div>
<div class="row">
<div class="col-12">
<p><?php echo get_theme_mod('loyalty_description_secondary');?></p>
<p><span><?php _e('Have questions regarding the program? Reach out to your TechFlyte recruiter or email [email protected]','techflyte');?></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php get_footer();?>