blogside/content-list.php

40 lines
1.7 KiB
PHP
Raw Normal View History

2016-02-03 11:28:05 +01:00
<article id="post-<?php the_ID(); ?>" <?php post_class('group post-list'); ?>>
<div class="post-inner post-hover">
<div class="post-thumbnail">
<a href="<?php the_permalink(); ?>">
2016-02-03 11:28:05 +01:00
<?php if ( has_post_thumbnail() ): ?>
2018-10-31 13:03:44 +01:00
<?php the_post_thumbnail('blogside-list'); ?>
2017-12-16 20:58:17 +01:00
<?php elseif ( get_theme_mod('placeholder') != 'off' ): ?>
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/img/thumb-list.png" alt="<?php the_title_attribute(); ?>" />
2016-02-03 11:28:05 +01:00
<?php endif; ?>
2019-07-29 17:29:42 +02:00
<?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>'; ?>
2016-02-03 11:28:05 +01:00
</a>
2017-12-16 20:58:17 +01:00
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) =='on' ) ): ?>
2019-07-29 17:29:42 +02:00
<a class="post-comments" href="<?php comments_link(); ?>"><span><i class="fas fa-comments"></i><?php comments_number( '0', '1', '%' ); ?></span></a>
2016-02-03 11:28:05 +01:00
<?php endif; ?>
</div><!--/.post-thumbnail-->
<div class="post-content">
<h2 class="post-title">
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
2016-02-03 11:28:05 +01:00
</h2><!--/.post-title-->
<ul class="post-meta group">
<li><?php the_category(' / '); ?></li>
2019-07-29 17:29:42 +02:00
<li><i class="far fa-clock"></i><?php the_time( get_option('date_format') ); ?></li>
2016-02-03 11:28:05 +01:00
</ul><!--/.post-meta-->
2017-12-16 20:58:17 +01:00
<?php if (get_theme_mod('excerpt-length') != '0'): ?>
2016-02-03 11:28:05 +01:00
<div class="entry excerpt">
<?php the_excerpt(); ?>
</div><!--/.entry-->
<?php endif; ?>
</div><!--/.post-content-->
</div><!--/.post-inner-->
</article><!--/.post-->