mirror of
https://ghproxy.net/https://github.com/AlxMedia/boxstyle.git
synced 2025-08-26 15:31:21 +08:00
50 lines
No EOL
1.9 KiB
PHP
50 lines
No EOL
1.9 KiB
PHP
<?php $format = get_post_format(); ?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('group post-list'); ?>>
|
|
<div class="post-inner post-hover <?php if ( !has_post_thumbnail() ) { ?>no-thumbnail<?php } ?>">
|
|
|
|
<?php if ( has_post_thumbnail() ): ?>
|
|
<div class="post-thumbnail">
|
|
<a href="<?php the_permalink(); ?>">
|
|
<?php the_post_thumbnail('boxstyle-list'); ?>
|
|
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-play"></i></span>'; ?>
|
|
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-volume-up"></i></span>'; ?>
|
|
<?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-star"></i></span>'; ?>
|
|
|
|
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) =='on' ) ): ?>
|
|
<a class="post-comments" href="<?php comments_link(); ?>"><span><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></span></a>
|
|
<?php endif; ?>
|
|
</a>
|
|
</div><!--/.post-thumbnail-->
|
|
<?php else: ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<div class="post-content">
|
|
|
|
<div class="post-category">
|
|
<?php the_category(' / '); ?>
|
|
</div><!--/.post-category-->
|
|
|
|
<h2 class="post-title">
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
|
</h2><!--/.post-title-->
|
|
|
|
<?php if (get_theme_mod('excerpt-length','26') != '0'): ?>
|
|
<div class="entry excerpt">
|
|
<?php the_excerpt(); ?>
|
|
</div><!--/.entry-->
|
|
<?php endif; ?>
|
|
|
|
<div class="post-date">
|
|
<i class="fa fa-clock-o"></i><?php the_time( get_option('date_format') ); ?>
|
|
</div><!--/.post-date-->
|
|
|
|
<?php if ( get_theme_mod( 'format-icon', 'on' ) =='on' ): ?>
|
|
<div class="format-circle"><a href="<?php echo get_post_format_link($format); ?>"><i class="fa"></i></a></div>
|
|
<?php endif; ?>
|
|
|
|
</div><!--/.post-content-->
|
|
|
|
</div><!--/.post-inner-->
|
|
</article><!--/.post-->
|