22 lines
428 B
PHP
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();?>
|