Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
service
/
Editing: archive-service.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; $service_archive_style = RDTheme::$options['service_archive_style']; $container_class = 'container content-padding'; $bg_f2_class = Helper::has_full_width() && ($service_archive_style == 3) ? 'bg-f2' : ''; ?> <div class="<?php echo esc_attr( $bg_f2_class ); ?>"> <div class="<?php echo esc_attr( $container_class ); ?>"> <div class="row"> <?php Helper::left_sidebar(); ?> <div class="<?php echo esc_attr( Helper::the_layout_class() ); ?>"> <?php if ( RDTheme::$options['has_service_archive_subtext'] ): ?> <div class="section-heading text-center heading-dark heading-layout5"> <h2><?php echo esc_html( RDTheme::$options['service_archive_subtext'] ); ?></h2> </div> <?php endif ?> <?php get_template_part('template-parts/service/content-service', $service_archive_style) ?> </div> <?php Helper::right_sidebar(); ?> </div> </div> </div> <?php get_footer(); ?>
Save
Cancel