mirror of
https://github.com/cupcakearmy/liquet.git
synced 2025-01-10 08:56:25 +00:00
30 lines
724 B
PHP
30 lines
724 B
PHP
<?php
|
|
|
|
include_once( 'loop-utils.php' );
|
|
|
|
$dates = getDates();
|
|
?>
|
|
|
|
<a href="<?= get_permalink() ?>" class="item">
|
|
<div class="flex container vertical">
|
|
<?php if ( has_post_thumbnail() ) : ?>
|
|
<div class="thumbnail">
|
|
<?= get_the_post_thumbnail(); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<h2 class="alt-font title"><?php the_title(); ?></h2>
|
|
<div class="flex container horizontal">
|
|
<div>
|
|
<?= $dates['created'] ?>
|
|
</div>
|
|
<div class="flex item grow"></div>
|
|
<div>
|
|
~<?= do_shortcode( '[rt_reading_time]' ); ?> min
|
|
</div>
|
|
</div>
|
|
<?php if ( has_excerpt() ) {
|
|
the_excerpt();
|
|
} ?>
|
|
</div>
|
|
</a>
|
|
<hr/>
|