HEX
Server: Apache/2.2.22
System: Linux server1.blueharbor.com 3.10.0-1160.90.1.vz7.200.7 #1 SMP Wed Jul 12 12:00:44 MSK 2023 x86_64
User: locglobe (1004)
PHP: 5.6.37
Disabled: NONE
Upload Files
File: /home/locglobe/public_html/wp-content/themes/writers/index.php
<?php
/**
 * The main template file.
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 * Learn more: http://codex.wordpress.org/Template_Hierarchy
 *
 * Please browse readme.txt for credits and forking information
 * @package writers
 */

get_header(); ?>

<div class="container">
	<div class="row">
		<div id="primary" class="col-md-9 content-area">
			<main id="main" class="site-main" role="main">
				<div class="article-grid-container">
					<?php if ( have_posts() ) : ?>
					<?php if ( is_home() && ! is_front_page() ) : ?>
					<header>
						<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
					</header>
				<?php endif; ?>

				<?php /* Start the Loop */ ?>
				<?php while ( have_posts() ) : the_post(); ?>

				<?php

				$post_display_option = get_theme_mod('post_display_option','post-excerpt');
				
				if($post_display_option == 'post-excerpt'){
					get_template_part( 'template-parts/content','excerpt');
				}
				else{
					get_template_part( 'template-parts/content','excerpt');
				}
				
				?>

			<?php endwhile; ?>

			<?php writers_posts_navigation(); ?>

		<?php else : ?>

		<?php get_template_part( 'template-parts/content', 'none' ); ?>

	<?php endif; ?>
</div>
</main><!-- #main -->
</div><!-- #primary -->

<?php get_sidebar('sidebar-1'); ?>
</div><!--row-->      

</div><!--.container-->
<?php get_footer(); ?>