mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/personalias.git
synced 2026-05-25 18:36:12 +08:00
34 lines
No EOL
1.4 KiB
PHP
34 lines
No EOL
1.4 KiB
PHP
<?php $format = get_post_format(); ?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<div class="type-grid-fold"></div>
|
|
|
|
<?php if ( has_post_thumbnail() ): ?>
|
|
<div class="type-grid-thumbnail">
|
|
<a href="<?php the_permalink(); ?>">
|
|
<?php the_post_thumbnail('personalias-medium'); ?>
|
|
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-play"></i></span>'; ?>
|
|
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-volume-up"></i></span>'; ?>
|
|
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-star"></i></span>'; ?>
|
|
</a>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="type-grid-inner">
|
|
<h2 class="type-grid-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
|
|
<div class="type-grid-meta">
|
|
<?php the_time( get_option('date_format') ); ?>
|
|
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) == 'on' ) ): ?>
|
|
· <a class="type-grid-comments" href="<?php comments_link(); ?>"><i class="fa fa-comment"></i><?php comments_number( '0', '1', '%' ); ?></a>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php if (get_theme_mod('excerpt-length','26') != '0'): ?>
|
|
<div class="type-grid-excerpt">
|
|
<?php the_excerpt(); ?>
|
|
</div>
|
|
<div class="clear"></div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
</article>
|