fix partners

This commit is contained in:
arlemp@selectel.ru
2021-11-02 14:24:28 +03:00
parent d5100fe2b6
commit 2d174073fd
4 changed files with 130 additions and 5 deletions

58
category-parthers.php Normal file
View File

@@ -0,0 +1,58 @@
<?php
/**
* The main template file.
*
*/
get_header();
$nn = 0;?>
<div id="content">
<ul id="nav_content">
<li><a href="http://beta.vetandlife.ru">Главная</a></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(); ?>