<section class="main__wall">
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
get_template_part('partials/content', 'post');
endwhile;
else :
get_template_part('partials/message');
endif;
?>
</section>
<?php get_template_part('partials/ask-form'); ?>
<section class="main__wall">
<?php
$curr = 0;
if (have_posts()) :
while (have_posts()) :
the_post();
get_template_part('partials/content', 'post');
$curr++;
$curr == 2 ? get_template_part('partials/ask-form') : '';
endwhile;
else :
get_template_part('partials/message');
endif;
?>
</section>