Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
luxia
/
inc
/
sections
/
✏️
Editing: teamdetails.php
<?php $data = luxia_el()->merge_options([ 'service_section_var' => [], 'main_image' => [], 'text_heading' => [], 'sub_heading' => [], ], $data); ?> <!-- Project Detail --> <section class="team-area-content" > <div class="container"> <!-- Lower Content --> <div class="lower-content"> <div class="row align-items-center"> <div class="col-lg-6 col-md-12 col-sm-12 text-center"> <div class="team-img-box"> <img src="<?php echo esc_url( $data ['main_image']['url'] ) ?>" alt="<?php echo esc_url( $data ['main_image']['url'] ) ?>"> </div> </div> <div class="text-column col-lg-6 col-md-12 col-sm-12"> <div class="s-about-content pl-30"> <span><?php echo html_entity_decode($data['text_heading'])?></span> <h2><?php echo html_entity_decode($data['sub_heading'])?></h2> <ul> <?php $i = 0; ?> <?php foreach ((array) $data['service_section_var'] as $service_var): $i++; ?> <li> <div class="icon"><i class="<?php echo esc_html( $service_var ['icon']) ?>" alt="<?php echo esc_html( $service_var ['icon']) ?>"></i> <strong> <?php echo html_entity_decode( $service_var ['text'])?></strong></div> <div class="text"> <?php echo html_entity_decode( $service_var ['content'])?></div> </li> <?php endforeach ?> </ul> <div class="social"> <?php echo html_entity_decode($data['des'])?> </div> </div> </div> </div> </div> </div> </section> <!--End Project Detail -->
💾 Save
❌ Cancel