mirror of
https://ghproxy.net/https://github.com/AlxMedia/dashwall.git
synced 2025-08-26 08:18:41 +08:00
27 lines
No EOL
613 B
PHP
27 lines
No EOL
613 B
PHP
<a class="highlights-card" href="<?php the_permalink(); ?>">
|
|
<div class="highlights-card-inner group">
|
|
|
|
<div class="highlights-card-left">
|
|
|
|
<div class="highlights-card-thumb">
|
|
<?php if ( has_post_thumbnail() ): ?>
|
|
<?php the_post_thumbnail('dashwall-small'); ?>
|
|
<?php else: ?>
|
|
<i class="fas fa-image"></i>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="highlights-card-right">
|
|
|
|
<h3 class="highlights-card-title">
|
|
<?php the_title(); ?>
|
|
</h3>
|
|
|
|
<div class="highlights-card-date"><?php the_time( get_option('date_format') ); ?></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</a>
|