blogcards/content-featured.php
2024-04-16 13:11:48 +02:00

30 lines
No EOL
838 B
PHP

<div class="featured-card">
<div class="featured-card-inner">
<div class="featured-card-left">
<div class="featured-card-thumb">
<?php if ( has_post_thumbnail() ): ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('blogcards-small'); ?></a>
<?php else: ?>
<a class="featured-card-thumb-empty" href="<?php the_permalink(); ?>"><i class="fas fa-image"></i></a>
<?php endif; ?>
</div>
</div>
<div class="featured-card-right">
<h3 class="featured-card-title">
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
</h3>
<div class="featured-card-date"><?php the_time( get_option('date_format') ); ?></div>
</div>
<a class="featured-card-more" href="<?php the_permalink(); ?>"><i class="fas fa-arrow-right"></i></a>
</div>
</div>