mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogcards.git
synced 2025-08-26 05:49:02 +08:00
30 lines
No EOL
838 B
PHP
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>
|