Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
project
/
Editing: single-koncrete-project.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; $project_single_style = RDTheme::$options['project_single_style']; ?> <div class="container content-padding"> <?php if($project_single_style == 2): ?> <?php get_template_part('template-parts/project/partials/slider-2'); ?> <?php endif; ?> <div class="row"> <?php Helper::left_sidebar(); ?> <div class="<?php echo esc_attr( Helper::the_layout_class() ); ?>"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part('template-parts/project/content-project-single', $project_single_style); ?> <?php endwhile; ?> </div> <?php Helper::right_sidebar(); ?> </div> </div> <?php get_footer(); ?>
Save
Cancel