-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloop.php
More file actions
23 lines (23 loc) · 1.06 KB
/
loop.php
File metadata and controls
23 lines (23 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="blog-item relative w-full">
<a href="<?php the_permalink(); ?>" class="block group">
<div class="h-60 2xl:h-80 bg-black w-full rounded-xl relative overflow-hidden">
<div class="absolute top-3 left-3 z-30 font-medium text-white/80">
<h4><?php echo (string) YoastSEO()->meta->for_post( get_the_ID() )->estimated_reading_time_minutes, " min read"; ?></h4>
</div>
<div class="absolute inset-0">
<img src="<?php the_post_thumbnail_url('thumbnail') ?>" class="w-full h-full object-cover group-hover:scale-105 transition-all duration-500" alt="<?php the_title() ?>">
</div>
</div>
<div class="pt-3">
<h5 class="post-meta flex gap-x-2">
<?php $cat = get_the_category(); echo $cat[0]->cat_name; ?>
<time datetime="<?php the_date('d.m.Y'); ?>" class="opacity-70">
<?php echo get_the_date('d.m.Y'); ?>
</time>
</h5>
<article class="mt-1">
<h3><?php the_title(); ?></h3>
</article>
</div>
</a>
</div>