-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-careers.php
166 lines (147 loc) · 6.73 KB
/
single-careers.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
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
165
166
<?php
/**
* Template:
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages and that
* other "pages" on your WordPress site will use a different template.
*
* @package WordPress
* @subpackage MicroAgility
* @since Micro Agility 1.0
*/
get_header(); ?>
<?php
if (have_posts()) :
while ( have_posts() ) : the_post(); ?>
<div class="single-career">
<div class="container">
<h1><?php the_field('careers_job_title');?></h1>
<div class="row">
<div class="col-6">
<h4>Job Description</h4>
<p><?php the_field('careers_job_description');?></p>
</div>
<div class="col-6">
<h4>Job Summary</h4>
<p><strong>Title:</strong> <?php the_field('careers_summary_title');?><br>
<strong>Location:</strong> <?php the_field('careers_summary_job_location');?><br>
<strong>Type:</strong> <?php the_field('careers_summary_job_type');?><br>
<strong>Rate:</strong> <?php the_field('careers_summary_job_rate');?><br>
<strong>Duration:</strong> <?php the_field('careers_summary_job_duration');?><br>
<strong>Job ID:</strong> <?php the_field('careers_summary_job_id');?><br>
</p>
</div>
</div>
</div>
</div>
<div class="inner-page-content">
<div class="container">
<h2><?php the_field('jobresponsibilitiesheading'); ?> </h2>
<?php the_field('careers_job_responsibility');?>
</div>
</div>
<div class="list-items">
<div class="container">
<h3><?php the_field('careers_candidate_responsibility_title');?></h3>
<?php if( have_rows('careers_candidate_responsibilities_repeater') ): ?>
<ul> <?php
while ( have_rows('careers_candidate_responsibilities_repeater') ) : the_row();
?>
<li> <?php the_sub_field('careers_candidate_responsibilities_text'); ?></li>
<?php endwhile; ?>
</ul>
<?php else :
// no rows found
endif;
?>
<h3><?php the_field('careers_requirements_and_skills_title');?></h3>
<?php if( have_rows('careers_requirements_and_skills_repeater') ): ?>
<ul class="bold"> <?php
while ( have_rows('careers_requirements_and_skills_repeater') ) : the_row();
?>
<li> <?php the_sub_field('careers_requirements_and_skills_text'); ?></li>
<?php endwhile; ?>
</ul>
<?php else :
// no rows found
endif;
?>
<h3><?php the_field('careers_education_title');?></h3>
<ul><li><?php the_field('careers_education_required');?></li></ul>
<a href="#" class="btn-apply-now">Apply Now</a>
</div>
</div>
<?php
endwhile;
endif;
?>
<div class="form">
<div class="container">
<?php echo do_shortcode( '[contact-form-7 id="2263" title="Single Career Form"]' ); ?>
</div>
</div>
<!-- <div class="blog-posts-bottom">
<div class="container">
<h2>Join Our Communities</h2>
<div class="blog-posts-slider">
<?php
if( have_rows('consultants_add_sliders') ):
while ( have_rows('consultants_add_sliders') ) : the_row();
$image = get_sub_field('consultants_add_slider_image');
?>
<div class="slider-single-post">
<div class="blog-image" style="background-image : url('<?php the_sub_field('consultants_add_slider_image');?>')"></div>
<div class="slider-post-text">
<h3><?php the_sub_field('consultants_add_slider_heading'); ?></h3>
<p><?php the_sub_field('consultants_add_slider_description'); ?></p>
<a href="<?php the_sub_field('consultants_add_slider_redirect_link'); ?>"><?php the_sub_field('consultants_add_slider_redirect_text'); ?></a>
</div>
</div>
<?php
endwhile;
else :
// no rows found
endif; ?>
<div class="slider-single-post">
<div class="blog-image" style="background-image : url('img/blog-post-1.jpg')"></div>
<div class="slider-post-text">
<h3>Business Transformation: Reinvent to Succeed</h3>
<p>The three critical factors in any organization are people, process, and technology. Business Transformation....</p>
<a href="#">Read More</a>
</div>
</div>
<div class="slider-single-post">
<div class="blog-image" style="background-image : url('img/blog-post-2.jpg')"></div>
<div class="slider-post-text">
<h3>CXO Series – Brian Meshkin, Founder & President</h3>
<p>Brian Meshkin, Founder & President at Proove Biosciences shares valuable insight regarding his role as a visionary </p>
<a href="#">Read More</a>
</div>
</div>
<div class="slider-single-post">
<div class="blog-image" style="background-image : url('img/blog-post-3.jpg')"></div>
<div class="slider-post-text">
<h3>CXO Series – Sarah Richardson</h3>
<p>Sarah is a transformative, inspirational, and results-driven Business and Technology executive within large-scale </p>
<a href="#">Read More</a>
</div>
</div>
<div class="slider-single-post">
<div class="blog-image" style="background-image : url('img/blog-post-2.jpg')"></div>
<div class="slider-post-text">
<h3>Business Transformation: Reinvent to Succeed</h3>
<p>The three critical factors in any organization are people, process, and technology. Business Transformation....</p>
<a href="#">Read More</a>
</div>
</div>
</div>
</div>
</div> -->
<div class="above-footer-link">
<div class="container">
<h2>Why MicroAgility</h2>
<a href="#">Explore More</a>
</div>
</div>
<?php get_footer(); ?>