Wordpress-Blog/themes/AlmaMater/index.php
Eugene van Aubel 8cefe8bc25 Added les 2
2024-10-01 19:38:17 +02:00

27 lines
945 B
PHP

<?php get_header(); ?>
<section class="section">
<div class="container">
<h1 class="title">My Blog</h1>
<div class="columns is-multiline">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="column is-one-third">
<div class="card">
<div class="card-content">
<h2 class="subtitle"><?php the_title(); ?></h2>
<div class="content">
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>" class="button is-link">Read More</a>
</div>
</div>
</div>
</div>
<?php endwhile; else : ?>
<p>No posts found.</p>
<?php endif; ?>
</div>
</div>
</section>
<?php get_footer(); ?>