58 lines
1.1 KiB
PHP
58 lines
1.1 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* The main template file.
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
get_header();
|
||
|
|
$nn = 0;?>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<div id="content">
|
||
|
|
|
||
|
|
<ul id="nav_content">
|
||
|
|
<li><a href="http://beta.vetandlife.ru">Главная</li>
|
||
|
|
<li> - <?single_cat_title()?></li>
|
||
|
|
</ul>
|
||
|
|
|
||
|
|
<h1 class="my-4"><?=single_cat_title()?></h1>
|
||
|
|
|
||
|
|
<?php if(have_posts()) :?>
|
||
|
|
<div class="search-card-box">
|
||
|
|
|
||
|
|
<?php while(have_posts()) : the_post();?>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<div class="search-card">
|
||
|
|
|
||
|
|
<div class="search-card-title"><a href="<?the_permalink();?>"><?the_title();?></a></div>
|
||
|
|
<?if ( has_post_thumbnail() ) :?>
|
||
|
|
<img class="search-card-img" src="<?php echo get_the_post_thumbnail_url(null, 'full'); ?>" width="180" alt="<?the_title();?>">
|
||
|
|
<?endif?>
|
||
|
|
<div><?the_excerpt();?></div>
|
||
|
|
<div class="mini-card-body">
|
||
|
|
<div class="news_date"><?the_time('j F Y, G:i');?></div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<?php endwhile;?>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<?get_template_part( '/blocks/paginator');?>
|
||
|
|
|
||
|
|
|
||
|
|
<?else:?>
|
||
|
|
|
||
|
|
Здесь пока нет публикаций
|
||
|
|
|
||
|
|
<?php endif;?>
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<?php get_footer(); ?>
|