folias/content.php
Alexander Agnarson d3992cea2a hover date
2021-02-03 14:07:05 +01:00

37 lines
No EOL
1.7 KiB
PHP

<?php $format = get_post_format(); ?>
<div class="type-portfolio">
<?php if ( has_post_thumbnail() ) : ?>
<div class="type-portfolio-thumb">
<?php if (get_theme_mod('hover-date','on') == 'on'): ?>
<div class="type-portfolio-date">
<div class="type-portfolio-date-month"><?php the_time('M') ?></div>
<div class="type-portfolio-date-day"><?php the_time('d') ?></div>
<div class="type-portfolio-date-year"><?php the_time('Y') ?></div>
</div>
<?php endif; ?>
<?php if ( get_theme_mod('comment-count','on') == 'on' ): ?>
<div class="type-portfolio-comments">
<a class="post-comments" href="<?php comments_link(); ?>"><span><?php comments_number( '0', '1', '%' ); ?></span></a>
</div>
<?php endif; ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('folias-medium'); ?>
<?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>
</div>
<?php endif; ?>
<div class="type-portfolio-content">
<h3 class="type-portfolio-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<?php if ( has_category() ) : ?>
<div class="type-portfolio-category"><?php the_category(' / '); ?></div>
<?php endif; ?>
<?php if ( (get_theme_mod('excerpt-length','16') != '0') && (get_theme_mod('excerpt-enable','off') == 'on') ): ?>
<div class="type-portfolio-excerpt">
<?php the_excerpt(); ?>
</div>
<?php endif; ?>
</div>
</div>