mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogrow.git
synced 2025-08-26 14:44:11 +08:00
26 lines
No EOL
881 B
PHP
26 lines
No EOL
881 B
PHP
<li>
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('entry group'); ?>>
|
|
|
|
<a href="<?php the_permalink(); ?>">
|
|
<?php if ( has_post_thumbnail() ): ?>
|
|
<?php the_post_thumbnail('blogrow-medium'); ?>
|
|
<?php else: ?>
|
|
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/img/thumb-medium.png" alt="<?php the_title_attribute(); ?>" />
|
|
<?php endif; ?>
|
|
</a>
|
|
|
|
<header class="entry-header">
|
|
<div class="entry-category"><?php the_category(' / '); ?></div>
|
|
<h2 class="entry-title">
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
|
</h2><!--/.entry-title-->
|
|
</header>
|
|
|
|
<div class="entry-content">
|
|
<?php the_excerpt(); ?>
|
|
</div><!--/.entry-->
|
|
|
|
<div class="entry-date updated"><i class="far fa-clock"></i><?php the_time( get_option('date_format') ); ?></div>
|
|
|
|
</article><!--/.entry-->
|
|
</li>
|