BIHomeWP/wp-content/themes/ekko/single-portfolio.php
2020-02-13 10:39:37 +07:00

22 lines
428 B
PHP

<?php
/**
* The template for displaying portfolio pages.
* @package ekko
* by KeyDesign */
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'core/templates/portfolio/content', 'project' );
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer();?>