MOON
Server: Apache
System: Linux server1.primemusicproductions.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: primrwxj (1001)
PHP: 8.3.3
Disabled: NONE
Upload Files
File: /home/primrwxj/articlebinder.com/wp-content/themes/larryslist/single.php
<?php
/**
 * single template master
 * larryslist
 */
get_header(); ?>
<section class="row">
    <article id="content" class="c8" role="main">

        <?php if (have_posts()) : ?>
	    <?php while (have_posts()) : the_post(); ?>

	    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

            <?php if( is_singular( 'listing' ) ) { 
                        get_template_part( 'content', 'listing' ); 
                    } else { 
                        get_template_part( 'content', 'posts' ); } 
            ?>

        </div><!-- ends post id -->
                <div class="responses">

                    <?php //comments_popup_link(); ?>

                </div>

                    <?php if( comments_open() ) comments_template('', true); ?>
	    <?php endwhile; ?>

	        <div class="navigation">
		    <p><span class="alignleft"> <?php previous_post_link(); ?></span><span class="alignright"><?php next_post_link(); ?></span></p>
	        </div>

	    <?php else : ?>

	    <div class="post">
	        <div class="entry">

		        <?php get_template_part( 'content', 'none' ); ?>

	        </div>
        </div>

	<?php endif; ?>

    </article>

        <div class="c4 end">

            <?php get_sidebar(); ?>

        </div>
</section>

    <?php get_footer(); ?>