add files

This commit is contained in:
Andrey Kuvshinov
2025-07-09 21:21:17 +03:00
commit 8fc8cbae32
596 changed files with 207566 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<!--[archive/grid]-->
<div class="row clearfix d-block">
<?php global $wp_query; ?>
<!--
<?= $wp_query->request ?>
-->
<?php if( have_posts() ) : ?>
<?php while( have_posts() ) : ?>
<?php the_post(); ?>
<?php if( is_events() ) : ?>
<?php get_template_part("template-parts/archive/event-cell", "", ["wide" => in_array( $wp_query->current_post, [ 4, 8, 14 ] ) ]); ?>
<?php else : ?>
<?php get_template_part("template-parts/archive/cell", "", ["wide" => in_array( $wp_query->current_post, [ 4, 8, 14 ] ) ]); ?>
<?php if ( wp_is_mobile() && $wp_query->current_post%3 === 0 ) : ?>
<?php get_template_part("template-parts/ad/adfox/ad-inlist-1"); ?>
<?php endif; ?>
<?php endif; ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part("template-parts/no-posts"); ?>
<?php endif; ?>
</div>
<!--[/archive/grid]-->