Viewing File: /home/maglabs/2vsa/wp-content/themes/cargohub/single.php

<?php
/**
 * The Template for displaying all single posts.
 *
 * @package CargoHub
 */

get_header(); ?>

	<div id="primary" class="content-area <?php cargohub_content_columns(); ?>">
		<main id="main" class="site-main">

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

			<?php get_template_part( 'parts/content', 'single' ); ?>

			<?php cargohub_author_box(); ?>

			<?php
				// If comments are open or we have at least one comment, load up the comment template
				if ( comments_open() || get_comments_number() ) :
					comments_template();
				endif;
			?>

		<?php endwhile; // end of the loop. ?>

		</main><!-- #main -->
	</div><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>
Back to Directory File Manager