mirror of
https://ghproxy.net/https://github.com/AlxMedia/curver.git
synced 2025-08-26 04:38:48 +08:00
23 lines
No EOL
1 KiB
PHP
23 lines
No EOL
1 KiB
PHP
<article id="post-<?php the_ID(); ?>" <?php post_class('group'); ?>>
|
|
<div class="post-inner post-hover">
|
|
|
|
<div class="post-thumbnail">
|
|
<a href="<?php the_permalink(); ?>">
|
|
<?php if ( has_post_thumbnail() ): ?>
|
|
<?php the_post_thumbnail('curver-large'); ?>
|
|
<?php else: ?>
|
|
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/img/thumb-medium.png" alt="<?php the_title_attribute(); ?>" />
|
|
<?php endif; ?>
|
|
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fas fa-play"></i></span>'; ?>
|
|
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fas fa-volume-up"></i></span>'; ?>
|
|
<?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fas fa-star"></i></span>'; ?>
|
|
</a>
|
|
|
|
<h2 class="post-title">
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
|
</h2><!--/.post-title-->
|
|
|
|
</div><!--/.post-thumbnail-->
|
|
|
|
</div><!--/.post-inner-->
|
|
</article><!--/.post-->
|