2015-12-11 17:09:48 +01:00
|
|
|
<li>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('entry group'); ?>>
|
|
|
|
|
2018-09-08 16:54:16 +02:00
|
|
|
<a href="<?php the_permalink(); ?>">
|
2015-12-11 17:09:48 +01:00
|
|
|
<?php if ( has_post_thumbnail() ): ?>
|
2018-05-26 12:19:06 +02:00
|
|
|
<?php the_post_thumbnail('blogrow-medium'); ?>
|
2015-12-11 17:09:48 +01:00
|
|
|
<?php else: ?>
|
2020-07-12 12:36:27 +02:00
|
|
|
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/img/thumb-medium.png" alt="<?php the_title_attribute(); ?>" />
|
2015-12-11 17:09:48 +01:00
|
|
|
<?php endif; ?>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<header class="entry-header">
|
|
|
|
<div class="entry-category"><?php the_category(' / '); ?></div>
|
|
|
|
<h2 class="entry-title">
|
2018-09-08 16:54:16 +02:00
|
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
2015-12-11 17:09:48 +01:00
|
|
|
</h2><!--/.entry-title-->
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="entry-content">
|
|
|
|
<?php the_excerpt(); ?>
|
|
|
|
</div><!--/.entry-->
|
|
|
|
|
2019-07-29 21:21:44 +02:00
|
|
|
<div class="entry-date updated"><i class="far fa-clock"></i><?php the_time( get_option('date_format') ); ?></div>
|
2015-12-11 17:09:48 +01:00
|
|
|
|
|
|
|
</article><!--/.entry-->
|
|
|
|
</li>
|