Warning: set_time_limit() has been disabled for security reasons in /home/domains/vol3/223/3261223/user/htdocs/wp-content/plugins/contact-form-7/wp-contact-form-7.php on line 26 Server IP : 77.68.64.20 / Your IP : 216.73.216.231 Web Server : Apache System : Linux hp3-wp-1011484.hostingp3.local 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64 User : csh2668037 ( 2112352) PHP Version : 7.4.33 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/domains/vol3/223/3261223/user/htdocs/wp-content/themes/workscout/ |
Upload File : |
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WorkScout
*/
?>
<!-- Footer
================================================== -->
<div class="margin-top-45"></div>
<!-- Footer
================================================== -->
<div id="footer-new">
<!-- Footer Top Section -->
<div class="footer-new-top-section">
<div class="container">
<div class="row">
<div class="sixteen columns">
<!-- Footer Rows Container -->
<div class="footer-new-rows-container">
<?php $logo = Kirki::get_option('workscout', 'pp_footer_logo_upload', '' );
if($logo){ ?>
<!-- Left Side -->
<div class="footer-new-rows-left">
<div class="footer-new-row">
<div class="footer-new-row-inner footer-new-logo">
<img src="<?php echo esc_url($logo); ?>" alt="">
</div>
</div>
</div>
<?php } ?>
<!-- Right Side -->
<div class="footer-new-rows-right">
<?php $stats_counter = Kirki::get_option('workscout','footer_stat_counters');
if(!empty($stats_counter)):
foreach( $stats_counter as $stat ) { ?>
<div class="footer-new-row">
<div class="footer-new-row-inner">
<ul class="intro-stats">
<li>
<i class="ln ln-<?php echo esc_attr($stat['icons']);?>"></i>
<strong class="counter"><?php echo esc_html($stat['number']);?></strong>
<span><?php echo esc_html($stat['label']);?></span>
</li>
</ul>
</div>
</div>
<?php }
endif; ?>
<!-- Fun Fact -->
</div>
</div>
<!-- Footer Rows Container / End -->
</div>
</div>
</div>
</div>
<!-- Footer Top Section / End -->
<!-- Footer Middle Section -->
<div class="footer-new-middle-section">
<div class="container">
<div class="footer-row">
<?php
$footer_layout = Kirki::get_option( 'workscout', 'pp_new_footer_widgets' );
$footer_layout_array = explode(',', $footer_layout);
$x = 0;
foreach ($footer_layout_array as $value) {
$x++;
?>
<div class="footer-col-<?php echo esc_attr($value); ?> footer-col-s-3 footer-col-xs-6">
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('footer'.$x)) : endif; ?>
</div>
<?php } ?>
</div>
</div>
</div>
<!-- Footer Middle Section / End -->
<!-- Footer Copyrights -->
<div class="footer-new-bottom-section">
<div class="container">
<div class="row">
<div class="sixteen columns">
<div class="footer-new-bottom-inner">
<div class="footer-new-bottom-left"><?php $copyrights = Kirki::get_option( 'workscout', 'pp_copyrights' );
if (function_exists('icl_register_string')) {
icl_register_string('Copyrights in footer','copyfooter', $copyrights);
echo icl_t('Copyrights in footer','copyfooter', $copyrights);
} else {
echo wp_kses($copyrights,array('br' => array(),'em' => array(),'strong' => array(),'a' => array('href' => array(),'title' => array())));
} ?>
</div>
<div class="footer-new-bottom-right">
<?php /* get the slider array */
$footericons = Kirki::get_option('workscout', 'pp_footericons', array() );
if ( !empty( $footericons ) ) {
echo '<ul class="new-footer-social-icons">';
foreach( $footericons as $icon ) {
echo '<li><a target="_blank" title="' . esc_attr($icon['icons_service']) . '" href="' . esc_url($icon['icons_url']) . '"><i class="icon-' . $icon['icons_service'] . '"></i></a></li>';
}
echo '</ul>';
}
?>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Copyrights / End -->
</div>
<!-- Footer / End -->
<div id="ajax_response"></div>
</div>
<!-- Wrapper / End -->
<?php if( is_page_template('template-home.php') && Kirki::get_option('workscout','pp_jobs_home_typed_status') == 'enable') {
$typed = Kirki::get_option('workscout','pp_jobs_home_typed_text');
if(empty($typed)){
$typed = 'healthcare, automotive, sales & marketing, accounting & finance';
}
$typed_array = explode(',',$typed);
?>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.9"></script>
<script>
var typed = new Typed('.typed-words', {
strings: <?php echo json_encode($typed_array); ?>,
typeSpeed: 80,
backSpeed: 80,
backDelay: 4000,
startDelay: 1000,
loop: true,
showCursor: true
});
</script>
<?php } ?>
<?php if( is_page_template('template-home-resumes.php') && Kirki::get_option('workscout','pp_resume_home_typed_status') == 'enable') {
$typed = Kirki::get_option('workscout','pp_resume_home_typed_text');
if(empty($typed)){
$typed = 'healthcare, automotive, sales & marketing, accounting & finance';
}
$typed_array = explode(',',$typed);
?>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.9"></script>
<script>
var typed = new Typed('.typed-words', {
strings: <?php echo json_encode($typed_array); ?>,
typeSpeed: 80,
backSpeed: 80,
backDelay: 4000,
startDelay: 1000,
loop: true,
showCursor: true
});
</script>
<?php } ?>
<?php wp_footer(); ?>
</body>
</html>