Viewing File: /home/maglabs/2vsa/wp-content/themes/cargohub/single-project.php
<?php
/**
* Template for displaying single projects
*
* @package FP Services
*/
get_header(); ?>
<div id="primary" class="content-area <?php cargohub_content_columns(); ?>">
<div class="site-main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'parts/content-single', 'project' ); ?>
<?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; ?>
<?php cargohub_portfolio_nav( 'project' ) ?>
</div>
<!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Back to Directory
File Manager