shapebox/content.php
2022-08-18 13:54:58 +02:00

50 lines
No EOL
2.1 KiB
PHP

<?php $format = get_post_format(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('blog-card-wrap'); ?>>
<div class="blog-card group">
<a href="<?php the_permalink(); ?>" class="blog-card-inner" style="background-image:url('<?php the_post_thumbnail_url('shapebox-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>'; ?>
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) =='on' ) ): ?>
<a class="blog-card-comments" href="<?php comments_link(); ?>"><i class="fas fa-comment"></i><span><?php comments_number( '0', '1', '%' ); ?></span></a>
<?php endif; ?>
</a>
<div class="blog-card-bottom-outer">
<div class="blog-card-bottom">
<?php if ( get_theme_mod( 'author-avatar', 'on' ) =='on' ): ?>
<div class="blog-card-author">
<a href="<?php echo get_author_posts_url(get_the_author_meta( 'ID' )); ?>"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></a>
</div>
<?php endif; ?>
<?php if ( get_theme_mod( 'more-button', 'on' ) =='on' ): ?>
<a class="blog-card-more-link" href="<?php the_permalink(); ?>"><?php esc_html_e('More','shapebox'); ?> <i class="fas fa-chevron-right"></i></a>
<?php endif; ?>
<h2 class="blog-card-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<ul class="blog-card-meta group">
<li class="blog-card-date"><i class="far fa-calendar"></i><?php the_time( get_option('date_format') ); ?></li>
</ul>
<?php if (get_theme_mod('excerpt-length','26') != '0'): ?>
<div class="blog-card-excerpt">
<?php the_excerpt(); ?>
</div>
<?php endif; ?>
</div>
<div class="blog-card-category group"><?php the_category(' '); ?></div>
</div>
</div>
</article><!--/.post-->