-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-vacancies.php
195 lines (164 loc) · 10.7 KB
/
single-vacancies.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
get_header();
//get_template_part( 'heading' );
// get options
$sb = monica_meta_data( '_monica_radio_sidebar_layout' )? monica_meta_data( '_monica_radio_sidebar_layout' ) : monica_option_data( 'select_post_sidebar' );
$ctwd = $sb == 'fullwidth' ? 12 : 8;
?>
<div class="site-main bottom-60 vacancies-inner">
<div class="container">
<div class="row" id="<?php echo esc_attr( $sb );?>">
<div id="post-content" class="content col-md-<?php echo esc_attr( $ctwd );?>">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'entry-item single' ); ?>>
<?php get_template_part( 'template/content', 'media' ); ?>
<h1 class="post_title"><?php the_title(); ?></h1>
<div class="vacancies-item-date">
<i class="fa fa-clock-o"></i>
<?php echo get_the_date('d.m.Y'); ?>
</div>
<?php if (get_field('place')) { ?>
<div class="vacancies-item-place">
<i class="fa fa-map-marker"></i>
<?php the_field('place'); ?>
</div>
<?php } ?>
<div class="entry-content-container">
<div class="entry-info heading-font">
<span>
<?php esc_html_e( 'by','vasca' );?> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );?>"><?php echo get_the_author();?></a> <?php esc_html_e( 'on','monica_theme' );?> <?php monica_entry_taxonomies(); ?>
<?php esc_html_e( 'at','vasca' );?> <time class="entry-date published" datetime="<?php echo esc_attr( get_the_date( 'c' ) );?>"><?php echo get_the_date();?></time><time class="updated" datetime="<?php echo esc_attr( get_the_modified_date( 'c' ) );?>"><?php echo get_the_modified_date();?></time>
</span>
</div>
<div class="entry-content format-content">
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
esc_html__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'monica_theme' ),
get_the_title()
) );
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'monica_theme' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'monica_theme' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
) );
_e('<b>[:ua]Щоб відповісти на вакансію, зверніться до контактної особи[:ru]Чтобы ответить на вакансию, обратитесь к контактному лицу[:en]To answer a vacancy, contact us[:]</b>');
?>
<ul class="vacancies-inner-contact-data">
<?php if (get_field('name')) { ?>
<li class="vacancies-item-contact-name">
<span><?php the_field('name'); ?></span>
</li>
<?php } ?>
<?php if (get_field('email')) { ?>
<li class="vacancies-item-contact-email">
<a href="mailto:<?php the_field('email'); ?>"><?php the_field('email'); ?></a>
</li>
<?php } ?>
<?php if (get_field('phone')) { ?>
<li class="vacancies-item-contact-phone">
<a href="tel:<?php the_field('phone'); ?>"><?php the_field('phone'); ?></a>
</li>
<?php } ?>
</ul>
<?php _e('<b>[:ua]Також ви можете скористатись формою на сайті, щоб відправити резюме[:ru]Также вы можете воспользоваться формой на сайте, чтобы отправить резюме[:en]You can also use the form on the site to send a resume[:]</b>'); ?><br>
<a href="#" id="send_resume"><?php _e('[:ua]Надіслати резюме[:ru]Отправить резюме[:en]Send resume[:]') ?></a>
</div><!-- .entry-content -->
<?php if (has_tag()): ?>
<div class="entry-meta heading-font">
<?php the_tags( '','' );?>
</div>
<?php endif; ?>
<div class="authorbox">
<div class="avatar-area">
<div class="avatar-img">
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
<?php echo get_avatar( get_the_author_meta( 'ID' ), 100 ); ?>
</a>
</div>
<div class="avatar-content">
<h4><?php the_author_meta( 'display_name' ); ?></h4>
</div>
</div><!-- // .avatar-area -->
<div class="author-content">
<p><?php the_author_meta( 'user_description' ); ?></p>
</div><!-- // .author-content -->
</div><!-- // .authorbox -->
</div><!-- // .entry-content-container -->
</article><!-- // .entry-item -->
<?php
if ( monica_option_data( 'switch_comment_posts') && ( comments_open() || get_comments_number() )) {
comments_template();
}
?>
<?php endwhile; ?>
</div><!-- // #archive-content -->
<?php
if ( $ctwd == 8)
get_sidebar();
?>
</div><!-- // .row -->
</div><!-- // .container -->
<div class="container">
<div class="row">
<?php if (get_field('content_bottom_icon')) { ?>
<img src="<?php the_field('content_bottom_icon'); ?>" class="img-responsive" style="margin: auto;">
<?php } ?>
</div>
</div>
</div><!-- // .site-main -->
<div class="content_bottom_icon">
</div>
<div class="resume-wrap">
<div class="container">
<form action="<?php echo admin_url('admin-ajax.php')?>?action=send_resume_form" id="resume-form" method="post" enctype="multipart/form-data">
<h5><?php _e('[:ua]Заповніть форму для звернення щодо вакансії[:ru]Заполните форму для обращения по вакансии[:en]Fill out the job vacancy form[:]') ?></h5>
<i class="close-form"></i>
<div class="row">
<div class="res_main_data_wrap col-md-4">
<input type="text" required name="name" placeholder="<?php _e('*[:ua]П.І.Б.[:ru]Ф.И.О.[:en]NAME[:]') ?>">
<input type="email" required name="email" placeholder="<?php _e('*EMAIL') ?>">
</div>
<div class="res_text_wrap col-md-8">
<textarea name="message" placeholder="<?php _e('[:ua]Текст повідомлення[:ru]Текст сообщения[:en]Message[:]') ?>"></textarea>
</div>
</div>
<div class="res_form_bottom row">
<div class="col-md-4 file_wrap">
<div class="res_chose_file" data-placeholder="<?php _e('[:ua]Вибрати файл[:ru]Выбрать файл[:en]Chose file[:]') ?>">
<?php _e('[:ua]Вибрати файл[:ru]Выбрать файл[:en]Chose file[:]') ?>
</div>
<span class="res_file_notification">
<?php _e('[:ua]Тільки файл до 20 Мб у форматі: *.doc, *.pdf[:ru]Только файл до 20 Мб в формате * .doc, * .pdf[:en]Only a file up to 20 MB in format: * .doc, * .pdf[:]') ?>
</span>
<input type="file" name="file" id="file" accept="application/msword, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.wordprocessingml.documen, application/pdf">
<label>
<input type="checkbox" required=""> <?php _e('[:ua]Погоджуюсь з[:ru]Согласен с[:en]I agree with the[:]') ?> <a href="/obrobka-personalnyh-danyh/"><?php _e('[:ua]обробкою персональних даних[:ru]обработкой персональных данных[:en]processing personal data[:]') ?></a>
</label>
</div>
<div class="col-md-4 recaptcha_wrap">
<div class="g-recaptcha" id="g-recaptcha" data-callback="verifyCaptcha"></div>
<div id="error_validation"></div>
</div>
<div class="col-md-4">
<input type="submit" value="<?php _e('[:ua]Надіслати звернення[:ru]Отправить обращение[:en]Submit[:]') ?>">
</div>
</div>
</form>
</div>
</div>
<script>
function verifyCaptcha() {
document.getElementById('error_validation').innerHTML = '';
}
var onloadCallback = function() {
grecaptcha.render(document.getElementById('g-recaptcha'), {
'sitekey' : '6Le9L6oUAAAAAN7byznoM8KQN7SmC2t5PhGwJrck',
});
};
</script>
<script src='https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit' async defer></script>
<?php get_footer(); ?>