-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
22 lines (22 loc) · 687 Bytes
/
index.php
File metadata and controls
22 lines (22 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
get_header();
?>
<section class="py-12">
<h1 class="text-3xl font-semibold">Latest Posts</h1>
<?php if ( have_posts() ) : ?>
<div class="mt-6 space-y-10">
<?php while ( have_posts() ) : the_post(); ?>
<article>
<h2 class="text-2xl font-semibold"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="mt-2 text-slate-600">
<?php the_excerpt(); ?>
</div>
</article>
<?php endwhile; ?>
</div>
<?php else : ?>
<p>No posts found.</p>
<?php endif; ?>
</section>
<?php
get_footer();