File: /home/region-gk.ru/data/www/region-gk.ru/wp-content/themes/region/partials/dps-newslist.php
<?php $categories = get_the_category(); ?>
<div class="card border-0 h-100 w-100 overflow-hidden mb-4 <?php foreach( $categories as $category ) { echo 'category-'.$category->slug.' '; } ?>">
<div class="card-body">
<div class="row">
<?php if ( has_post_thumbnail() ) : ?>
<div class="col-4">
<img src="<?php echo get_the_post_thumbnail_url( get_the_ID(), 'full' ); ?>" class="img-fluid" alt="">
</div>
<div class="col-8">
<?php else: ?>
<div class="col-12">
<?php endif; ?>
<h6 class="card-subtitle text-muted font-weight-normal mb-3"><span><i class="far fa-calendar"></i> <?php echo get_the_date(); ?></span></h6>
<a href="<?php echo get_the_permalink(); ?>"><?php the_title( '<h5 class="card-title">', '</h5>' ); ?></a>
<?php if ( has_excerpt() ) : ?>
<?php //the_excerpt(); ?>
<?php else: ?>
<?php //the_content(); ?>
<?php endif; ?>
<?php //if ( has_excerpt() ) : ?>
<a class="btn btn-link pl-0" style="display: none" href="<?php echo get_the_permalink(); ?>">Подробнее <i class="fas fa-chevron-right ml-1" aria-hidden="true" style="font-size: 70%"></i></a>
<?php //endif; ?>
</div>
</div>
</div>
</div>