56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* The main template file.
|
|
*
|
|
*/
|
|
|
|
get_header();
|
|
$nn = 0;?>
|
|
|
|
<div id="content">
|
|
|
|
<ul id="nav_content">
|
|
<li><a href="<?=get_home_url()?>">Главная</a></li>
|
|
<li> - <?single_cat_title()?></li>
|
|
</ul>
|
|
|
|
<h1 class="my-4"><?single_cat_title()?></h1>
|
|
|
|
<div class="mini-card-block">
|
|
|
|
<?php if(have_posts()) : while(have_posts()) : the_post();?>
|
|
|
|
|
|
|
|
|
|
<div class="mini-card">
|
|
<?if ( has_post_thumbnail() ) :?>
|
|
<div class="mini-card-img">
|
|
<a href="<?the_permalink();?>"><img class="mini-card-img" width="147" style="width: 147px;" src="<?php echo get_the_post_thumbnail_url(null, 'large'); ?>" alt="<?the_title();?>"></a>
|
|
<?if( has_tag( 'видео' ) ):?>
|
|
<span class="play-card"></span>
|
|
<?endif?>
|
|
</div>
|
|
<?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>
|
|
|
|
|
|
<?php endwhile;?>
|
|
|
|
</div> <!--//end minicard block -->
|
|
|
|
<?else:?>
|
|
|
|
Здесь пока нет публикаций
|
|
|
|
<?php endif;?>
|
|
|
|
<?get_template_part( '/blocks/paginator');?>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|