Filling unused index
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nonimart 2025-08-13 13:56:27 +02:00
parent b6dac8d98a
commit 0ee675e646

View File

@ -1 +1,20 @@
<?php get_header(); ?>
<div class="container mx-auto my-8">
<?php if (have_posts()) : ?>
<?php
while (have_posts()) :
the_post();
?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php
get_footer();