mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogrow.git
synced 2025-08-26 06:36:25 +08:00
19 lines
No EOL
719 B
PHP
19 lines
No EOL
719 B
PHP
<article id="post-<?php the_ID(); ?>" <?php post_class('item group'); ?>>
|
|
|
|
<a href="<?php the_permalink(); ?>">
|
|
<?php if ( has_post_thumbnail() ): ?>
|
|
<?php the_post_thumbnail('blogrow-featured'); ?>
|
|
<?php else: ?>
|
|
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/img/thumb-featured.png" alt="<?php the_title_attribute(); ?>" />
|
|
<?php endif; ?>
|
|
</a>
|
|
<div class="item-overlay">
|
|
<div class="item-slant-left"></div>
|
|
<div class="item-slant-right"></div>
|
|
<span class="item-category"><?php the_category(' / '); ?></span>
|
|
<h3 class="item-title">
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
|
</h3><!--/.item-title-->
|
|
</div>
|
|
|
|
</article><!--/.item-->
|