Your IP : 216.73.216.0
<?php if ('layout_two' == $settings['layout_type']) : ?>
<!--Team One Start-->
<section class="team-one">
<div class="container">
<div class="row">
<?php if (is_array($settings['team_items'])) : ?>
<?php
foreach ($settings['team_items'] as $item) : ?>
<!--Team One Single Start-->
<div class="col-xl-4 col-lg-6 col-md-6">
<div class="team-one__single">
<div class="team-one__single__shape"></div><!-- /.team-one__single__shape -->
<div class="team-one__img">
<?php if (!empty($item['image']['url'])) : ?>
<img src="<?php echo esc_url($item['image']['url']); ?>" alt="<?php echo esc_attr(zeinet_get_thumbnail_alt($item['image']['id'])); ?>">
<?php endif; ?>
<?php if ($item['social_network']) : ?>
<ul class="list-unstyled team-one__social">
<?php echo wp_kses($item['social_network'], 'zeinet_allowed_tags'); ?>
</ul>
<?php endif; ?>
</div>
<div class="team-one__content">
<h4 class="team-one__name">
<?php if (!empty($item['url']['url'])) : ?>
<a href="<?php echo esc_url($item['url']['url']); ?>"><?php echo esc_html($item['name']); ?></a>
<?php else : ?>
<?php echo esc_html($item['name']); ?>
<?php endif; ?>
</h4>
<?php if (!empty($item['designation'])) : ?>
<p class="team-one__sub-title"><?php echo esc_html($item['designation']); ?></p>
<?php endif; ?>
</div>
</div>
</div>
<!--Team One Single End-->
<?php
endforeach;
endif; ?>
</div>
</div>
</section>
<!--Team One End-->
<?php endif; ?>