retro-candy-shop/retro-candy-shop/index.php
2025-07-13 22:59:37 +02:00

9 lines
234 B
PHP

<?php get_header(); ?>
<main class="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</main>
<?php get_footer(); ?>