mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-01 04:28:12 +08:00
43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Template part for displaying posts.
|
|
*
|
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
|
*
|
|
* @package Akina
|
|
*/
|
|
|
|
?>
|
|
|
|
<article class="post works-list" itemscope="" itemtype="http://schema.org/BlogPosting">
|
|
<div class="works-entry">
|
|
<div class="works-main">
|
|
<div class="works-feature">
|
|
<?php if ( has_post_thumbnail() ) { ?>
|
|
<a href="<?php the_permalink();?>"><?php the_post_thumbnail('large'); ?></a>
|
|
<?php } else {?>
|
|
<a href="<?php the_permalink();?>"><img src="<?php bloginfo('template_url'); ?>/feature/index.php" /></a>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<div class="works-overlay">
|
|
<h1 class="works-title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h1>
|
|
<div class="works-p-time">
|
|
<i class="iconfont icon-calendar"></i> <?php echo poi_time_since(strtotime($post->post_date_gmt));//the_time('Y-m-d');?>
|
|
</div>
|
|
<div class="works-meta">
|
|
<div class="works-comnum">
|
|
<span><i class="iconfont icon-mark"></i> <?php comments_popup_link('暂无', '1 ', '% '); ?></span>
|
|
</div>
|
|
<div class="works-views">
|
|
<span><i class="iconfont icon-attention"></i> <?php echo get_post_views(get_the_ID()); ?> </span>
|
|
</div>
|
|
</div>
|
|
<a class="worksmore" href="<?php the_permalink(); ?>"></a>
|
|
</div>
|
|
<!-- .entry-footer -->
|
|
</div>
|
|
</div>
|
|
|
|
</article><!-- #post-## -->
|