Current File : /home/kelaby89/muzza.fit/wp-content/themes/deadlift/templates/portfolio/portfolio-template.php |
<?php
/**
* The portoflio template file.
*
* @package WordPress
* @subpackage Deadlift
* @version 1.8.2
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="content" class="clearfix">
<?php
/**
* Output post loop through hook so we can do the magic however we want
*/
do_action( 'deadlift_posts', array(
'el_id' => 'portfolio-index',
'post_type' => 'work',
'pagination' => deadlift_get_theme_mod( 'work_pagination', '' ),
'works_per_page' => deadlift_get_theme_mod( 'works_per_page', '' ),
'grid_padding' => deadlift_get_theme_mod( 'work_grid_padding', 'yes' ),
'item_animation' => deadlift_get_theme_mod( 'work_item_animation' ),
) );
?>
</main><!-- #content -->
</div><!-- #primary -->
<?php
get_sidebar( 'portfolio' );
get_footer();
?>