57 lines
2.3 KiB
PHP
57 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
* Template Name: Masonry Simple
|
|
*/
|
|
get_header(); ?>
|
|
<div class="main-content-w">
|
|
<div class="main-content-m">
|
|
<?php os_the_primary_sidebar('left', true); ?>
|
|
<div class="main-content-i">
|
|
<?php require_once(get_template_directory() . '/inc/partials/hero-image.php') ?>
|
|
<?php require_once(get_template_directory() . '/inc/partials/featured-slider.php') ?>
|
|
<?php osetin_show_filter_bar(); ?>
|
|
<div class="content side-padded-content">
|
|
<?php require_once(get_template_directory() . '/inc/partials/top-ad-sidebar.php') ?>
|
|
<div id="primary-content" class="index-isotope isotope-simple v3 <?php echo os_lightbox_posts_enabled_class(); ?>" data-layout-mode="<?php echo (os_get_use_fixed_height_index_posts() == true) ? 'fitRows' : 'masonry'; ?>">
|
|
<?php
|
|
require_once(get_template_directory() . '/inc/osetin-custom-index-query.php');
|
|
|
|
$os_current_box_counter = 1; $os_ad_block_counter = 0;
|
|
$forse_hide_element_read_more = true;
|
|
$forse_hide_element_date = true;
|
|
while ($osetin_query->have_posts()) : $osetin_query->the_post(); ?>
|
|
<?php get_template_part( 'v3-content', get_post_format() ); ?>
|
|
<?php os_ad_between_posts(); ?>
|
|
<?php endwhile; ?>
|
|
|
|
</div>
|
|
<?php if(os_get_next_posts_link($osetin_query)): ?>
|
|
<div class="isotope-next-params" data-params="<?php echo os_get_next_posts_link($osetin_query); ?>" data-layout-type="v3-simple"></div>
|
|
<?php if((os_get_current_navigation_type() == 'infinite_button') || (os_get_current_navigation_type() == 'infinite')): ?>
|
|
<div class="load-more-posts-button-w">
|
|
<a href="#"><i class="os-icon-plus"></i> <span><?php _e('Load More Posts', 'pluto'); ?></span></a>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<?php
|
|
$temp_query = $wp_query;
|
|
$wp_query = $osetin_query; ?>
|
|
|
|
<div class="pagination-w hide-for-isotope">
|
|
<?php if(function_exists('wp_pagenavi') && os_get_current_navigation_type() != 'default'): ?>
|
|
<?php wp_pagenavi(); ?>
|
|
<?php else: ?>
|
|
<?php posts_nav_link(); ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php $wp_query = $temp_query; ?>
|
|
<?php wp_reset_postdata(); ?>
|
|
</div>
|
|
</div>
|
|
<?php os_the_primary_sidebar('right', true); ?>
|
|
</div>
|
|
<?php os_footer(); ?>
|
|
</div>
|
|
<?php
|
|
get_footer();
|
|
?>
|