2021-09-20 01:07:53 +03:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* The main template file.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
get_header();
|
|
|
|
|
$nn = 0;?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-24 23:18:38 +03:00
|
|
|
<div id="content">
|
|
|
|
|
|
|
|
|
|
<ul id="nav_content">
|
|
|
|
|
<li><a href="http://beta.vetandlife.ru">Главная</li>
|
|
|
|
|
<li> - <?single_cat_title()?></li>
|
|
|
|
|
</ul>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
|
|
|
|
<h1 class="my-4"><?=single_cat_title()?></h1>
|
|
|
|
|
|
|
|
|
|
<?php if(have_posts()) : while(have_posts()) : the_post();?>
|
|
|
|
|
|
|
|
|
|
<?$nn++;?>
|
|
|
|
|
|
|
|
|
|
<?if ($nn == 1):?>
|
|
|
|
|
|
|
|
|
|
<div class="main-card">
|
|
|
|
|
<?if ( has_post_thumbnail() ) :?>
|
2021-10-09 22:59:32 +03:00
|
|
|
<div class="card-img-top">
|
|
|
|
|
<a href="<?the_permalink();?>"><img class="card-img-top" src="<?php echo get_the_post_thumbnail_url(null, 'full'); ?>" alt="<?the_title();?>"></a>
|
|
|
|
|
</div>
|
2021-09-20 01:07:53 +03:00
|
|
|
<?endif?>
|
|
|
|
|
<h2 class="main-card-title"><a href="<?the_permalink();?>"><?the_title();?></a></h2>
|
|
|
|
|
<div class="main-card-body">
|
|
|
|
|
<div class="main-card-text"><a href="<?the_permalink();?>"><?the_excerpt();?></a></div>
|
2021-09-28 22:25:21 +03:00
|
|
|
<div class="news_date"><?the_time('j F Y, G:i');?></div>
|
2021-09-20 01:07:53 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?elseif ($nn == 2):?>
|
|
|
|
|
<div class="mini-card-block">
|
|
|
|
|
<?endif?>
|
|
|
|
|
|
|
|
|
|
<?if ($nn > 1):?>
|
|
|
|
|
|
|
|
|
|
<div class="mini-card">
|
|
|
|
|
<?if ( has_post_thumbnail() ) :?>
|
|
|
|
|
<a href="<?the_permalink();?>"><img class="mini-card-img" src="<?php echo get_the_post_thumbnail_url(null, 'full'); ?>" alt="<?the_title();?>"></a>
|
|
|
|
|
<?endif?>
|
|
|
|
|
<h2 class="mini-card-title"><a href="<?the_permalink();?>"><?the_title();?></a></h2>
|
|
|
|
|
<div class="mini-card-body">
|
|
|
|
|
<div class="news_date"><?the_time('j F Y, G:i');?></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?endif?>
|
|
|
|
|
|
|
|
|
|
<?php endwhile;?>
|
|
|
|
|
|
|
|
|
|
</div> <!--//end minicard block -->
|
|
|
|
|
|
|
|
|
|
<?else:?>
|
|
|
|
|
|
|
|
|
|
Здесь пока нет публикаций
|
|
|
|
|
|
|
|
|
|
<?php endif;?>
|
|
|
|
|
|
2021-09-28 22:25:21 +03:00
|
|
|
<?get_template_part( '/blocks/paginator');?>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
2021-09-28 22:25:21 +03:00
|
|
|
</div>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|